@wix/auto_sdk_papyrus_documents 1.0.0 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.d.ts +18 -18
- package/build/cjs/index.js +173 -156
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +552 -528
- package/build/cjs/index.typings.js +136 -127
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +536 -525
- package/build/cjs/meta.js +125 -114
- package/build/cjs/meta.js.map +1 -1
- package/build/cjs/schemas.d.ts +26 -22
- package/build/cjs/schemas.js +317 -271
- package/build/cjs/schemas.js.map +1 -1
- package/build/es/index.d.mts +18 -18
- package/build/es/index.mjs +173 -156
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +552 -528
- package/build/es/index.typings.mjs +136 -127
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +536 -525
- package/build/es/meta.mjs +125 -114
- package/build/es/meta.mjs.map +1 -1
- package/build/es/schemas.d.mts +26 -22
- package/build/es/schemas.mjs +317 -271
- package/build/es/schemas.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +18 -18
- package/build/internal/cjs/index.typings.d.ts +616 -523
- package/build/internal/cjs/meta.d.ts +642 -516
- package/build/internal/cjs/schemas.d.ts +26 -22
- package/build/internal/es/index.d.mts +18 -18
- package/build/internal/es/index.typings.d.mts +616 -523
- package/build/internal/es/meta.d.mts +642 -516
- package/build/internal/es/schemas.d.mts +26 -22
- package/package.json +4 -4
- package/build/internal/cjs/index.js +0 -1101
- package/build/internal/cjs/index.js.map +0 -1
- package/build/internal/cjs/index.typings.js +0 -863
- package/build/internal/cjs/index.typings.js.map +0 -1
- package/build/internal/cjs/meta.js +0 -705
- package/build/internal/cjs/meta.js.map +0 -1
- package/build/internal/cjs/schemas.js +0 -658
- package/build/internal/cjs/schemas.js.map +0 -1
- package/build/internal/es/index.mjs +0 -1050
- package/build/internal/es/index.mjs.map +0 -1
- package/build/internal/es/index.typings.mjs +0 -817
- package/build/internal/es/index.typings.mjs.map +0 -1
- package/build/internal/es/meta.mjs +0 -658
- package/build/internal/es/meta.mjs.map +0 -1
- package/build/internal/es/schemas.mjs +0 -602
- package/build/internal/es/schemas.mjs.map +0 -1
|
@@ -1,27 +1,5 @@
|
|
|
1
1
|
import * as z from 'zod';
|
|
2
2
|
|
|
3
|
-
declare const GetDownloadPageRequest: z.ZodObject<{
|
|
4
|
-
file: z.ZodString;
|
|
5
|
-
}, z.core.$strip>;
|
|
6
|
-
declare const GetDownloadPageResponse: z.ZodObject<{
|
|
7
|
-
body: z.ZodOptional<z.ZodString>;
|
|
8
|
-
statusCode: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
9
|
-
headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
10
|
-
key: z.ZodOptional<z.ZodString>;
|
|
11
|
-
value: z.ZodOptional<z.ZodString>;
|
|
12
|
-
}, z.core.$strip>>>;
|
|
13
|
-
}, z.core.$strip>;
|
|
14
|
-
declare const RedirectToDocumentRequest: z.ZodObject<{
|
|
15
|
-
file: z.ZodString;
|
|
16
|
-
}, z.core.$strip>;
|
|
17
|
-
declare const RedirectToDocumentResponse: z.ZodObject<{
|
|
18
|
-
body: z.ZodOptional<z.ZodString>;
|
|
19
|
-
statusCode: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
20
|
-
headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
21
|
-
key: z.ZodOptional<z.ZodString>;
|
|
22
|
-
value: z.ZodOptional<z.ZodString>;
|
|
23
|
-
}, z.core.$strip>>>;
|
|
24
|
-
}, z.core.$strip>;
|
|
25
3
|
declare const CreateDocumentRequest: z.ZodObject<{
|
|
26
4
|
options: z.ZodOptional<z.ZodObject<{
|
|
27
5
|
document: z.ZodOptional<z.ZodObject<{
|
|
@@ -204,6 +182,10 @@ declare const QueryDocumentRequest: z.ZodObject<{
|
|
|
204
182
|
ASC: "ASC";
|
|
205
183
|
DESC: "DESC";
|
|
206
184
|
}>>;
|
|
185
|
+
origin: z.ZodOptional<z.ZodObject<{
|
|
186
|
+
latitude: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
187
|
+
longitude: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
188
|
+
}, z.core.$strip>>;
|
|
207
189
|
}, z.core.$strip>>>;
|
|
208
190
|
}, z.core.$strip>, z.ZodXor<readonly [z.ZodObject<{
|
|
209
191
|
paging: z.ZodOptional<z.ZodNever>;
|
|
@@ -407,5 +389,27 @@ declare const DownloadDocumentSourceRequest: z.ZodObject<{
|
|
|
407
389
|
declare const DownloadDocumentSourceResponse: z.ZodObject<{
|
|
408
390
|
downloadUrl: z.ZodOptional<z.ZodString>;
|
|
409
391
|
}, z.core.$strip>;
|
|
392
|
+
declare const GetDownloadPageRequest: z.ZodObject<{
|
|
393
|
+
file: z.ZodString;
|
|
394
|
+
}, z.core.$strip>;
|
|
395
|
+
declare const GetDownloadPageResponse: z.ZodObject<{
|
|
396
|
+
body: z.ZodOptional<z.ZodString>;
|
|
397
|
+
statusCode: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
398
|
+
headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
399
|
+
key: z.ZodOptional<z.ZodString>;
|
|
400
|
+
value: z.ZodOptional<z.ZodString>;
|
|
401
|
+
}, z.core.$strip>>>;
|
|
402
|
+
}, z.core.$strip>;
|
|
403
|
+
declare const RedirectToDocumentRequest: z.ZodObject<{
|
|
404
|
+
file: z.ZodString;
|
|
405
|
+
}, z.core.$strip>;
|
|
406
|
+
declare const RedirectToDocumentResponse: z.ZodObject<{
|
|
407
|
+
body: z.ZodOptional<z.ZodString>;
|
|
408
|
+
statusCode: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
409
|
+
headers: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
410
|
+
key: z.ZodOptional<z.ZodString>;
|
|
411
|
+
value: z.ZodOptional<z.ZodString>;
|
|
412
|
+
}, z.core.$strip>>>;
|
|
413
|
+
}, z.core.$strip>;
|
|
410
414
|
|
|
411
415
|
export { CreateDocumentRequest, CreateDocumentResponse, DeleteDocumentRequest, DeleteDocumentResponse, DownloadDocumentRequest, DownloadDocumentResponse, DownloadDocumentSourceRequest, DownloadDocumentSourceResponse, GetDocumentRequest, GetDocumentResponse, GetDownloadPageRequest, GetDownloadPageResponse, GetDownloadUrlRequest, GetDownloadUrlResponse, QueryDocumentRequest, QueryDocumentResponse, RedirectToDocumentRequest, RedirectToDocumentResponse, UpdateDocumentRequest, UpdateDocumentResponse };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_papyrus_documents",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"schemas"
|
|
36
36
|
],
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@wix/sdk-runtime": "^1.0.
|
|
39
|
-
"@wix/sdk-types": "^1.17.
|
|
38
|
+
"@wix/sdk-runtime": "^1.0.24",
|
|
39
|
+
"@wix/sdk-types": "^1.17.11",
|
|
40
40
|
"zod": "^4.3.6"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
@@ -57,5 +57,5 @@
|
|
|
57
57
|
"fqdn": "wix.papyrus.v1.document"
|
|
58
58
|
}
|
|
59
59
|
},
|
|
60
|
-
"falconPackageHash": "
|
|
60
|
+
"falconPackageHash": "a0a5cdc38f233be8761c41db4f71fe8b65871a3521097cf590f64efd"
|
|
61
61
|
}
|