@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.
Files changed (49) hide show
  1. package/build/cjs/index.d.ts +18 -18
  2. package/build/cjs/index.js +173 -156
  3. package/build/cjs/index.js.map +1 -1
  4. package/build/cjs/index.typings.d.ts +552 -528
  5. package/build/cjs/index.typings.js +136 -127
  6. package/build/cjs/index.typings.js.map +1 -1
  7. package/build/cjs/meta.d.ts +536 -525
  8. package/build/cjs/meta.js +125 -114
  9. package/build/cjs/meta.js.map +1 -1
  10. package/build/cjs/schemas.d.ts +26 -22
  11. package/build/cjs/schemas.js +317 -271
  12. package/build/cjs/schemas.js.map +1 -1
  13. package/build/es/index.d.mts +18 -18
  14. package/build/es/index.mjs +173 -156
  15. package/build/es/index.mjs.map +1 -1
  16. package/build/es/index.typings.d.mts +552 -528
  17. package/build/es/index.typings.mjs +136 -127
  18. package/build/es/index.typings.mjs.map +1 -1
  19. package/build/es/meta.d.mts +536 -525
  20. package/build/es/meta.mjs +125 -114
  21. package/build/es/meta.mjs.map +1 -1
  22. package/build/es/schemas.d.mts +26 -22
  23. package/build/es/schemas.mjs +317 -271
  24. package/build/es/schemas.mjs.map +1 -1
  25. package/build/internal/cjs/index.d.ts +18 -18
  26. package/build/internal/cjs/index.typings.d.ts +616 -523
  27. package/build/internal/cjs/meta.d.ts +642 -516
  28. package/build/internal/cjs/schemas.d.ts +26 -22
  29. package/build/internal/es/index.d.mts +18 -18
  30. package/build/internal/es/index.typings.d.mts +616 -523
  31. package/build/internal/es/meta.d.mts +642 -516
  32. package/build/internal/es/schemas.d.mts +26 -22
  33. package/package.json +4 -4
  34. package/build/internal/cjs/index.js +0 -1101
  35. package/build/internal/cjs/index.js.map +0 -1
  36. package/build/internal/cjs/index.typings.js +0 -863
  37. package/build/internal/cjs/index.typings.js.map +0 -1
  38. package/build/internal/cjs/meta.js +0 -705
  39. package/build/internal/cjs/meta.js.map +0 -1
  40. package/build/internal/cjs/schemas.js +0 -658
  41. package/build/internal/cjs/schemas.js.map +0 -1
  42. package/build/internal/es/index.mjs +0 -1050
  43. package/build/internal/es/index.mjs.map +0 -1
  44. package/build/internal/es/index.typings.mjs +0 -817
  45. package/build/internal/es/index.typings.mjs.map +0 -1
  46. package/build/internal/es/meta.mjs +0 -658
  47. package/build/internal/es/meta.mjs.map +0 -1
  48. package/build/internal/es/schemas.mjs +0 -602
  49. 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.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.12",
39
- "@wix/sdk-types": "^1.17.7",
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": "13aaef572b81977f802e2d9200b897b65550fcb95f893a49e1151f48"
60
+ "falconPackageHash": "a0a5cdc38f233be8761c41db4f71fe8b65871a3521097cf590f64efd"
61
61
  }