Skip to content

wip #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
max-parallel: 1
matrix:
os: [ ubuntu-latest ]
php: [ 8.2, 8.3, 8.4 ]
php: [ 8.4 ]
laravel: [ 12.* ]
stability: [ prefer-lowest, prefer-stable ]

Expand Down Expand Up @@ -47,10 +47,13 @@ jobs:
- name: Execute tests
run: vendor/bin/pest
env:
DOCUWARE_URL: ${{ secrets.DOCUWARE_URL }}
DOCUWARE_USERNAME: ${{ secrets.DOCUWARE_USERNAME }}
DOCUWARE_PASSWORD: ${{ secrets.DOCUWARE_PASSWORD }}
DOCUWARE_COOKIES: ${{ secrets.DOCUWARE_COOKIES }}
M_FILES_URL: ${{ secrets.M_FILES_URL }}
M_FILES_USERNAME: ${{ secrets.M_FILES_USERNAME }}
M_FILES_PASSWORD: ${{ secrets.M_FILES_PASSWORD }}
M_FILES_VAULT_GUID: ${{ secrets.M_FILES_VAULT_GUID }}
M_FILES_CACHE_DRIVER: ${{ secrets.M_FILES_CACHE_DRIVER }}
M_FILES_CACHE_LIFETIME_IN_SECONDS: ${{ secrets.M_FILES_CACHE_LIFETIME_IN_SECONDS }}
SALOON_FIXTURE_REDACTION: true

- name: Store Log Artifacts
if: failure()
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,3 @@ vendor
node_modules
.phpactor.json
build
tests/Fixtures/Saloon/
1 change: 1 addition & 0 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
<env name="M_FILES_VAULT_GUID" value=""/>
<env name="M_FILES_CACHE_DRIVER" value="file"/>
<env name="M_FILES_CACHE_LIFETIME_IN_SECONDS" value="0"/>
<env name="SALOON_FIXTURE_REDACTION" value="true"/>
</php>
<source>
<include>
Expand Down
2 changes: 1 addition & 1 deletion src/DTO/Document.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static function fromArray(array $data): self
return new self(
id: Arr::get($data, 'ObjVer.ID') ?: Arr::get($data, 'ID'),
title: Arr::get($data, 'Title'),
objectType: $objVerType && $objVerType !== 0 ? (string) $objVerType : Arr::get($data, 'ObjectType'),
objectType: $objVerType && $objVerType != 0 ? (string) $objVerType : Arr::get($data, 'ObjectType'),
objectTypeId: $objVerType !== null ? $objVerType : Arr::get($data, 'ObjectTypeID'),
version: $objVerVersion ? (string) $objVerVersion : Arr::get($data, 'Version'),
created: $created ? CarbonImmutable::parse($created) : null,
Expand Down
2 changes: 1 addition & 1 deletion src/DTO/PropertyValue.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static function fromArray(array $data): self
{
$typedValue = Arr::get($data, 'TypedValue', []);
$dataTypeId = Arr::get($typedValue, 'DataType', 0);
$dataType = MFDataTypeEnum::tryFrom($dataTypeId) ?? MFDataTypeEnum::Uninitialized;
$dataType = MFDataTypeEnum::tryFrom($dataTypeId) ?? MFDataTypeEnum::UNINITIALIZED;

return new self(
propertyDef: Arr::get($data, 'PropertyDef'),
Expand Down
18 changes: 15 additions & 3 deletions src/Fixtures/AuthenticationTokenFixture.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,34 @@ protected function defineName(): string

protected function defineSensitiveHeaders(): array
{
if (! env('SALOON_FIXTURE_REDACTION', true)) {
return [];
}

return [
// 'Set-Cookie' => 'REDACTED',
'Set-Cookie' => 'REDACTED',
];
}

protected function defineSensitiveJsonParameters(): array
{
if (! env('SALOON_FIXTURE_REDACTION', true)) {
return [];
}

return [
// 'Value' => 'REDACTED-AUTH-TOKEN',
'Value' => 'REDACTED-AUTH-TOKEN',
];
}

protected function defineSensitiveRegexPatterns(): array
{
if (! env('SALOON_FIXTURE_REDACTION', true)) {
return [];
}

return [
// '/[A-Za-z0-9_-]{100,}/' => 'REDACTED-AUTH-TOKEN',
'/[A-Za-z0-9_-]{100,}/' => 'REDACTED-AUTH-TOKEN',
];
}
}
16 changes: 14 additions & 2 deletions src/Fixtures/CreateSingleFileDocumentFixture.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@ protected function defineName(): string

protected function defineSensitiveHeaders(): array
{
return [];
if (! env('SALOON_FIXTURE_REDACTION', true)) {
return [];
}

return [
'Set-Cookie' => 'REDACTED',
];
}

protected function defineSensitiveJsonParameters(): array
Expand All @@ -25,6 +31,12 @@ protected function defineSensitiveJsonParameters(): array

protected function defineSensitiveRegexPatterns(): array
{
return [];
if (! env('SALOON_FIXTURE_REDACTION', true)) {
return [];
}

return [
'/2025-07-1[0-9]T[0-9]{2}:[0-9]{2}:[0-9]{2}Z/' => '2024-01-01T00:00:00Z',
];
}
}
16 changes: 12 additions & 4 deletions src/Fixtures/CurrentUserFixture.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,25 @@ protected function defineName(): string

protected function defineSensitiveHeaders(): array
{
if (! env('SALOON_FIXTURE_REDACTION', true)) {
return [];
}

return [
// 'Set-Cookie' => 'REDACTED',
'Set-Cookie' => 'REDACTED',
];
}

protected function defineSensitiveJsonParameters(): array
{
if (! env('SALOON_FIXTURE_REDACTION', true)) {
return [];
}

return [
// 'AccountName' => '[email protected]',
// 'SerialNumber' => 'REDACTED-SERIAL',
// 'FullName' => 'REDACTED USER',
'AccountName' => '[email protected]',
'SerialNumber' => 'REDACTED-SERIAL',
'FullName' => 'REDACTED USER',
];
}

Expand Down
16 changes: 14 additions & 2 deletions src/Fixtures/DocumentPropertiesFixture.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@ protected function defineName(): string

protected function defineSensitiveHeaders(): array
{
return [];
if (! env('SALOON_FIXTURE_REDACTION', true)) {
return [];
}

return [
'Set-Cookie' => 'REDACTED',
];
}

protected function defineSensitiveJsonParameters(): array
Expand All @@ -25,6 +31,12 @@ protected function defineSensitiveJsonParameters(): array

protected function defineSensitiveRegexPatterns(): array
{
return [];
if (! env('SALOON_FIXTURE_REDACTION', true)) {
return [];
}

return [
'/Fehlerreferenz-ID: [a-f0-9-]{36}/' => 'Fehlerreferenz-ID: REDACTED-ERROR-ID',
];
}
}
26 changes: 23 additions & 3 deletions src/Fixtures/DocumentsFixture.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,16 +15,36 @@ protected function defineName(): string

protected function defineSensitiveHeaders(): array
{
return [];
if (! env('SALOON_FIXTURE_REDACTION', true)) {
return [];
}

return [
'Set-Cookie' => 'REDACTED',
];
}

protected function defineSensitiveJsonParameters(): array
{
return [];
if (! env('SALOON_FIXTURE_REDACTION', true)) {
return [];
}

return [
'ObjectGUID' => 'REDACTED-GUID',
];
}

protected function defineSensitiveRegexPatterns(): array
{
return [];
if (! env('SALOON_FIXTURE_REDACTION', true)) {
return [];
}

return [
'/\{[0-9A-F]{8}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{4}-[0-9A-F]{12}\}/i' => '{REDACTED-GUID}',
'/2025-07-1[0-9]T[0-9]{2}:[0-9]{2}:[0-9]{2}Z/' => '2024-01-01T00:00:00Z',
'/[0-9]{2}\.07\.2025 [0-9]{2}:[0-9]{2}/' => '01.01.2024 00:00',
];
}
}
18 changes: 15 additions & 3 deletions src/Fixtures/DownloadFileFixture.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,22 +15,34 @@ protected function defineName(): string

protected function defineSensitiveHeaders(): array
{
if (! env('SALOON_FIXTURE_REDACTION', true)) {
return [];
}

return [
// 'Set-Cookie' => 'REDACTED',
'Set-Cookie' => 'REDACTED',
];
}

protected function defineSensitiveJsonParameters(): array
{
if (! env('SALOON_FIXTURE_REDACTION', true)) {
return [];
}

return [
// 'Value' => 'REDACTED-AUTH-TOKEN',
'Value' => 'REDACTED-AUTH-TOKEN',
];
}

protected function defineSensitiveRegexPatterns(): array
{
if (! env('SALOON_FIXTURE_REDACTION', true)) {
return [];
}

return [
// '/[A-Za-z0-9_-]{100,}/' => 'REDACTED-AUTH-TOKEN',
'/[A-Za-z0-9_-]{100,}/' => 'REDACTED-AUTH-TOKEN',
];
}
}
6 changes: 5 additions & 1 deletion src/Fixtures/LogoutSessionFixture.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,12 @@ protected function defineName(): string

protected function defineSensitiveHeaders(): array
{
if (! env('SALOON_FIXTURE_REDACTION', true)) {
return [];
}

return [
// 'Set-Cookie' => 'REDACTED',
'Set-Cookie' => 'REDACTED',
];
}

Expand Down
8 changes: 7 additions & 1 deletion src/Fixtures/UploadFileFixture.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@ protected function defineName(): string

protected function defineSensitiveHeaders(): array
{
return [];
if (! env('SALOON_FIXTURE_REDACTION', true)) {
return [];
}

return [
'Set-Cookie' => 'REDACTED',
];
}

protected function defineSensitiveJsonParameters(): array
Expand Down
18 changes: 18 additions & 0 deletions tests/Fixtures/Saloon/authentication-token.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"statusCode": 200,
"headers": {
"Cache-Control": "private, must-revalidate, max-age=0",
"Content-Type": "application\/json; charset=utf-8",
"Expires": "Wed, 17 Jul 2024 00:31:06 GMT",
"X-Frame-Options": "SAMEORIGIN",
"Content-Security-Policy": "default-src 'none'; object-src 'self'; script-src 'unsafe-inline' 'unsafe-eval' 'self' blob: https:\/\/js.monitor.azure.com; style-src 'unsafe-inline' 'self'; font-src 'self' data:; connect-src 'self' https:\/\/northeurope-0.in.applicationinsights.azure.com https:\/\/js.monitor.azure.com; img-src 'self' blob: data:; manifest-src 'self'; form-action 'self' javascript:; frame-src * blob:; frame-ancestors 'self';",
"Set-Cookie": "REDACTED",
"X-XSS-Protection": "1; mode=block",
"X-Content-Type-Options": "nosniff",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains;",
"Date": "Fri, 18 Jul 2025 00:31:06 GMT",
"Content-Length": "354"
},
"data": "{\"Value\":\"REDACTED-AUTH-TOKEN\"}",
"context": []
}
17 changes: 17 additions & 0 deletions tests/Fixtures/Saloon/create-single-file-document.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"statusCode": 200,
"headers": {
"Cache-Control": "private",
"Content-Type": "application/json; charset=utf-8",
"X-Frame-Options": "SAMEORIGIN",
"Content-Security-Policy": "default-src 'none'; object-src 'self'; script-src 'unsafe-inline' 'unsafe-eval' 'self' blob: https://js.monitor.azure.com; style-src 'unsafe-inline' 'self'; font-src 'self' data:; connect-src 'self' https://northeurope-0.in.applicationinsights.azure.com https://js.monitor.azure.com; img-src 'self' blob: data:; manifest-src 'self'; form-action 'self' javascript:; frame-src * blob:; frame-ancestors 'self';",
"Set-Cookie": "REDACTED",
"X-XSS-Protection": "1; mode=block",
"X-Content-Type-Options": "nosniff",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains;",
"Date": "Fri, 18 Jul 2025 01:21:01 GMT",
"Content-Length": "490"
},
"data": "{\"Title\":\"Sample Document\",\"ObjVer\":{\"Version\":1,\"VersionType\":4,\"ID\":123,\"Type\":0},\"ObjectCheckedOut\":false,\"IsDeleted\":false,\"Files\":[{\"Name\":\"test-1.pdf\",\"Extension\":\"pdf\",\"Size\":8600,\"ID\":456,\"LastModified\":\"2024-01-01T00:00:00Z\"}]}",
"context": []
}
18 changes: 18 additions & 0 deletions tests/Fixtures/Saloon/current-user.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"statusCode": 200,
"headers": {
"Cache-Control": "private, must-revalidate, max-age=0",
"Content-Type": "application/json; charset=utf-8",
"Expires": "Wed, 17 Jul 2024 00:31:09 GMT",
"X-Frame-Options": "SAMEORIGIN",
"Content-Security-Policy": "default-src 'none'; object-src 'self'; script-src 'unsafe-inline' 'unsafe-eval' 'self' blob: https://js.monitor.azure.com; style-src 'unsafe-inline' 'self'; font-src 'self' data:; connect-src 'self' https://northeurope-0.in.applicationinsights.azure.com https://js.monitor.azure.com; img-src 'self' blob: data:; manifest-src 'self'; form-action 'self' javascript:; frame-src * blob:; frame-ancestors 'self';",
"Set-Cookie": "REDACTED",
"X-XSS-Protection": "1; mode=block",
"X-Content-Type-Options": "nosniff",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains;",
"Date": "Fri, 18 Jul 2025 00:31:09 GMT",
"Content-Length": "2446"
},
"data": "{\"LicenseAllowsModifications\":true,\"HasFullControlOfVault\":true,\"IsAdminUser\":false,\"AccountName\":\"[email protected]\",\"LoginHint\":\"\",\"ACLMode\":1,\"AuthenticationType\":3,\"CanCreateobjects\":true,\"CanForceUndoCheckout\":true,\"CanManageCommonUISettings\":true,\"CanManageTraditionalFolders\":true,\"CanManageCommonViews\":true,\"CanMaterializeViews\":true,\"CanSeeAllObjects\":true,\"CanSeeDeletedObjects\":true,\"InternalUser\":true,\"UserID\":123,\"FullName\":\"REDACTED USER\",\"isReadOnlyLicense\":false,\"ServerVaultCapabilities\":{\"VaultLoginAccountsSupported\":false,\"PublicLinkSharingSupported\":true,\"LatestVersionPublicLinkSharingSupported\":false,\"FacetSearchSupported\":true,\"PropertyDefSearchabilitySupported\":true,\"AutomaticMetadataSupported\":false,\"FileStreamingSupported\":true,\"SearchOptionsSupported\":true,\"JSONExtApplicationsSupported\":true,\"SearchReferencedValueListItemsSupported\":true,\"GetTextContentWithOptionsSupported\":true,\"DetectTextLanguageSupported\":true,\"ObjectDataRetrievalInChunksSupported\":true,\"SettingsManagerSupported\":true,\"ExternalRepositoryObjectMigrationSupported\":true,\"ClientHttpApiSupported\":true,\"ReverseGroupingLevelSupported\":true,\"ReplicationConfigurationIDSupported\":true,\"AsyncNACLChangePropagationSupported\":true,\"AsyncTasksRetrievalSupported\":true,\"FindDuplicatesSupported\":true,\"FavorFullTextSearchSupported\":true,\"ApplicationTaskQueueSupported\":true,\"ObjectPermissionsForClientSupported\":true,\"UndeleteUserAccountByGUIDSupported\":true,\"UseUserVisibleACLInSearches\":true,\"NamedValueStorageConflictDetectionSupported\":true,\"HierarchicalObjectTypePropertiesSupported\":true,\"EmbeddingToSharePointSupported\":true,\"EmbeddingToSalesforceSupported\":true,\"AsyncModifyObjectClassSupported\":true,\"WebUserInterfaceSupported\":true,\"RemoveFromRecentsSupported\":true,\"EmbeddingToGoogleGSuiteSupported\":true,\"FullControlVaultUserCanModifyCodeSupported\":false,\"EmbeddingToArcGisSupported\":true,\"WebClientsProductionTelemetryEnabled\":true,\"SharedLinkBasedWOPIOperationSupported\":true,\"MdccResolvedOnServer\":true,\"GreenLightsSupported\":false,\"NewWebWOPICoAuthoringSupported\":true,\"MFilesLinkSupported\":true,\"MdccConversionOnServer\":true,\"VaultLevelOptimizationJobsSupported\":true,\"ImportViewsWithOlderLastModifiedSupported\":true,\"VisitorLinksSupported\":true,\"AddObjectWithMultipleFilesSupported\":true},\"SerialNumber\":\"REDACTED-SERIAL\",\"Deployment\":\"OnPremise\",\"licenseString\":\"Named\",\"licenseType\":1,\"AutomaticMetadataEnabled\":false,\"CanDestroyObjects\":true}",
"context": []
}
17 changes: 17 additions & 0 deletions tests/Fixtures/Saloon/document-properties.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"statusCode": 404,
"headers": {
"Cache-Control": "private",
"Content-Type": "application\/json; charset=utf-8",
"X-Frame-Options": "SAMEORIGIN",
"Content-Security-Policy": "default-src 'none'; object-src 'self'; script-src 'unsafe-inline' 'unsafe-eval' 'self' blob: https:\/\/js.monitor.azure.com; style-src 'unsafe-inline' 'self'; font-src 'self' data:; connect-src 'self' https:\/\/northeurope-0.in.applicationinsights.azure.com https:\/\/js.monitor.azure.com; img-src 'self' blob: data:; manifest-src 'self'; form-action 'self' javascript:; frame-src * blob:; frame-ancestors 'self';",
"Set-Cookie": "REDACTED",
"X-XSS-Protection": "1; mode=block",
"X-Content-Type-Options": "nosniff",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains;",
"Date": "Fri, 18 Jul 2025 01:21:21 GMT",
"Content-Length": "414"
},
"data": "{\"Status\":404,\"URL\":\"\/objects\/251\/properties\",\"Method\":\"GET\",\"Exception\":{\"Name\":\"NotFoundException\",\"Message\":\"Eine Ausnahme vom Typ \\\"MFWS.NotFoundException\\\" wurde ausgel\u00f6st.\"},\"Stack\":\"Fehlerreferenz-ID: REDACTED-ERROR-ID\",\"Message\":\"Eine Ausnahme vom Typ \\\"MFWS.NotFoundException\\\" wurde ausgel\u00f6st.\",\"IsLoggedToVault\":true,\"IsLoggedToApplication\":true,\"ExceptionName\":\"NotFoundException\"}",
"context": []
}
17 changes: 17 additions & 0 deletions tests/Fixtures/Saloon/documents.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"statusCode": 200,
"headers": {
"Cache-Control": "private, must-revalidate, max-age=0",
"Content-Type": "application/json; charset=utf-8",
"Expires": "Wed, 17 Jul 2024 00:31:08 GMT",
"X-Frame-Options": "SAMEORIGIN",
"Content-Security-Policy": "default-src 'none'; object-src 'self'; script-src 'unsafe-inline' 'unsafe-eval' 'self' blob: https://js.monitor.azure.com; style-src 'unsafe-inline' 'self'; font-src 'self' data:; connect-src 'self' https://northeurope-0.in.applicationinsights.azure.com https://js.monitor.azure.com; img-src 'self' blob: data:; manifest-src 'self'; form-action 'self' javascript:; frame-src * blob:; frame-ancestors 'self';",
"Set-Cookie": "REDACTED",
"X-XSS-Protection": "1; mode=block",
"X-Content-Type-Options": "nosniff",
"Strict-Transport-Security": "max-age=31536000; includeSubDomains;",
"Date": "Fri, 18 Jul 2025 00:31:07 GMT",
"Content-Length": "1500"
},
"data": "{\"Items\":[{\"Title\":\"Sample Document 1\",\"EscapedTitleWithID\":\"Sample Document 1 (ID 154-1)\",\"DisplayID\":\"1\",\"ObjVer\":{\"Version\":1,\"VersionType\":4,\"ID\":1,\"Type\":154},\"Class\":189,\"CheckedOutAtUtc\":\"1601-01-01T00:00:00Z\",\"CheckedOutAt\":\"1601-01-01T00:00:00Z\",\"LastModifiedUtc\":\"2024-01-01T00:00:00Z\",\"LastModified\":\"2024-01-01T00:00:00Z\",\"ObjectCheckedOut\":false,\"ObjectCheckedOutToThisUser\":false,\"CheckedOutTo\":0,\"SingleFile\":false,\"HasRelationshipsFrom\":false,\"HasRelationshipsTo\":false,\"HasRelationshipsFromThis\":false,\"HasRelationshipsToThis\":false,\"HasAssignments\":false,\"Deleted\":false,\"IsDeleted\":false,\"IsStub\":false,\"ThisVersionLatestToThisUser\":true,\"CreatedUtc\":\"2024-01-01T00:00:00Z\",\"Created\":\"2024-01-01T00:00:00Z\",\"Files\":[{\"ID\":101,\"Name\":\"sample-document-1\",\"Extension\":\"pdf\",\"Size\":1024,\"LastModified\":\"2024-01-01T00:00:00Z\"}],\"VisibleAfterOperation\":true,\"PathInIDView\":\"154\\\\0-999\\\\1\\\\S\\\\v1\",\"LastModifiedDisplayValue\":\"01.01.2024 00:00\",\"CheckedOutAtDisplayValue\":\"01.01.1601 00:00\",\"CreatedDisplayValue\":\"01.01.2024 00:00\",\"ObjectVersionFlags\":2,\"Score\":0,\"LastAccessedByMe\":\"1899-12-30T00:00:00Z\",\"AccessedByMeUtc\":\"1899-12-30T00:00:00Z\",\"AccessedByMe\":\"1899-12-30T00:00:00Z\",\"ObjectGUID\":\"{REDACTED-GUID-1}\",\"ObjectCapabilityFlags\":-1,\"ObjectFlags\":64,\"propertyID\":0,\"LatestCheckedInVersion\":1,\"BaseProperties\":[]},{\"Title\":\"Sample Document 2\",\"EscapedTitleWithID\":\"Sample Document 2 (ID 154-2)\",\"DisplayID\":\"2\",\"ObjVer\":{\"Version\":1,\"VersionType\":4,\"ID\":2,\"Type\":154},\"Class\":189,\"CheckedOutAtUtc\":\"1601-01-01T00:00:00Z\",\"CheckedOutAt\":\"1601-01-01T00:00:00Z\",\"LastModifiedUtc\":\"2024-01-01T00:00:00Z\",\"LastModified\":\"2024-01-01T00:00:00Z\",\"ObjectCheckedOut\":false,\"ObjectCheckedOutToThisUser\":false,\"CheckedOutTo\":0,\"SingleFile\":false,\"HasRelationshipsFrom\":false,\"HasRelationshipsTo\":false,\"HasRelationshipsFromThis\":false,\"HasRelationshipsToThis\":false,\"HasAssignments\":false,\"Deleted\":false,\"IsDeleted\":false,\"IsStub\":false,\"ThisVersionLatestToThisUser\":true,\"CreatedUtc\":\"2024-01-01T00:00:00Z\",\"Created\":\"2024-01-01T00:00:00Z\",\"Files\":[{\"ID\":102,\"Name\":\"sample-document-2\",\"Extension\":\"docx\",\"Size\":2048,\"LastModified\":\"2024-01-01T00:00:00Z\"}],\"VisibleAfterOperation\":true,\"PathInIDView\":\"154\\\\0-999\\\\2\\\\S\\\\v1\",\"LastModifiedDisplayValue\":\"01.01.2024 00:00\",\"CheckedOutAtDisplayValue\":\"01.01.1601 00:00\",\"CreatedDisplayValue\":\"01.01.2024 00:00\",\"ObjectVersionFlags\":2,\"Score\":0,\"LastAccessedByMe\":\"1899-12-30T00:00:00Z\",\"AccessedByMeUtc\":\"1899-12-30T00:00:00Z\",\"AccessedByMe\":\"1899-12-30T00:00:00Z\",\"ObjectGUID\":\"{REDACTED-GUID-2}\",\"ObjectCapabilityFlags\":-1,\"ObjectFlags\":64,\"propertyID\":0,\"LatestCheckedInVersion\":1,\"BaseProperties\":[]}],\"TotalCount\":2,\"Page\":1,\"PageSize\":10}"
}
Loading