@digital8/lighting-illusions-ts-sdk 0.0.1444 → 0.0.1446

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 (176) hide show
  1. package/.openapi-generator/FILES +78 -0
  2. package/README.md +58 -2
  3. package/dist/apis/LabelApi.d.ts +109 -0
  4. package/dist/apis/LabelApi.js +433 -0
  5. package/dist/apis/StoreApi.d.ts +190 -0
  6. package/dist/apis/StoreApi.js +744 -0
  7. package/dist/apis/SupplierApi.d.ts +33 -1
  8. package/dist/apis/SupplierApi.js +122 -0
  9. package/dist/apis/index.d.ts +2 -0
  10. package/dist/apis/index.js +2 -0
  11. package/dist/models/AddressFrontendResource.d.ts +74 -0
  12. package/dist/models/AddressFrontendResource.js +77 -0
  13. package/dist/models/AddressFrontendResourceArrayResponse.d.ts +33 -0
  14. package/dist/models/AddressFrontendResourceArrayResponse.js +50 -0
  15. package/dist/models/AddressResource.d.ts +80 -0
  16. package/dist/models/AddressResource.js +81 -0
  17. package/dist/models/AddressResourceArrayResponse.d.ts +33 -0
  18. package/dist/models/AddressResourceArrayResponse.js +50 -0
  19. package/dist/models/AttachStoresSupplierRequest.d.ts +32 -0
  20. package/dist/models/AttachStoresSupplierRequest.js +51 -0
  21. package/dist/models/AttachSuppliersStoreRequest.d.ts +32 -0
  22. package/dist/models/AttachSuppliersStoreRequest.js +51 -0
  23. package/dist/models/DetachStoresSupplierRequest.d.ts +32 -0
  24. package/dist/models/DetachStoresSupplierRequest.js +51 -0
  25. package/dist/models/DetachSuppliersStoreRequest.d.ts +32 -0
  26. package/dist/models/DetachSuppliersStoreRequest.js +51 -0
  27. package/dist/models/GetAllStoreRequest.d.ts +93 -0
  28. package/dist/models/GetAllStoreRequest.js +81 -0
  29. package/dist/models/IndexLabelRequest.d.ts +109 -0
  30. package/dist/models/IndexLabelRequest.js +92 -0
  31. package/dist/models/IndexProductChildRequest.d.ts +1 -0
  32. package/dist/models/IndexProductChildRequest.js +1 -0
  33. package/dist/models/IndexStoreRequest.d.ts +105 -0
  34. package/dist/models/IndexStoreRequest.js +85 -0
  35. package/dist/models/LabelListResource.d.ts +75 -0
  36. package/dist/models/LabelListResource.js +74 -0
  37. package/dist/models/LabelListResourceArrayResponse.d.ts +33 -0
  38. package/dist/models/LabelListResourceArrayResponse.js +50 -0
  39. package/dist/models/LabelLiteResource.d.ts +56 -0
  40. package/dist/models/LabelLiteResource.js +65 -0
  41. package/dist/models/LabelLiteResourceArrayResponse.d.ts +33 -0
  42. package/dist/models/LabelLiteResourceArrayResponse.js +50 -0
  43. package/dist/models/LabelResource.d.ts +23 -4
  44. package/dist/models/LabelResource.js +19 -8
  45. package/dist/models/PaginatedLabelListResourceResponse.d.ts +40 -0
  46. package/dist/models/PaginatedLabelListResourceResponse.js +57 -0
  47. package/dist/models/PaginatedStoreListResourceResponse.d.ts +40 -0
  48. package/dist/models/PaginatedStoreListResourceResponse.js +57 -0
  49. package/dist/models/StoreFrontendResource.d.ts +98 -0
  50. package/dist/models/StoreFrontendResource.js +89 -0
  51. package/dist/models/StoreFrontendResourceArrayResponse.d.ts +33 -0
  52. package/dist/models/StoreFrontendResourceArrayResponse.js +50 -0
  53. package/dist/models/StoreLabelRequest.d.ts +74 -0
  54. package/dist/models/StoreLabelRequest.js +71 -0
  55. package/dist/models/StoreListResource.d.ts +81 -0
  56. package/dist/models/StoreListResource.js +80 -0
  57. package/dist/models/StoreListResourceArrayResponse.d.ts +33 -0
  58. package/dist/models/StoreListResourceArrayResponse.js +50 -0
  59. package/dist/models/StoreLiteResource.d.ts +45 -0
  60. package/dist/models/StoreLiteResource.js +58 -0
  61. package/dist/models/StoreLiteResourceArrayResponse.d.ts +33 -0
  62. package/dist/models/StoreLiteResourceArrayResponse.js +50 -0
  63. package/dist/models/StoreResource.d.ts +102 -0
  64. package/dist/models/StoreResource.js +93 -0
  65. package/dist/models/StoreResourceArrayResponse.d.ts +33 -0
  66. package/dist/models/StoreResourceArrayResponse.js +50 -0
  67. package/dist/models/StoreSpecialDateFrontendResource.d.ts +68 -0
  68. package/dist/models/StoreSpecialDateFrontendResource.js +71 -0
  69. package/dist/models/StoreSpecialDateFrontendResourceArrayResponse.d.ts +33 -0
  70. package/dist/models/StoreSpecialDateFrontendResourceArrayResponse.js +50 -0
  71. package/dist/models/StoreSpecialDateResource.d.ts +68 -0
  72. package/dist/models/StoreSpecialDateResource.js +71 -0
  73. package/dist/models/StoreSpecialDateResourceArrayResponse.d.ts +33 -0
  74. package/dist/models/StoreSpecialDateResourceArrayResponse.js +50 -0
  75. package/dist/models/StoreStoreRequest.d.ts +94 -0
  76. package/dist/models/StoreStoreRequest.js +85 -0
  77. package/dist/models/StoreStoreRequestAddress.d.ts +68 -0
  78. package/dist/models/StoreStoreRequestAddress.js +73 -0
  79. package/dist/models/StoreStoreRequestSpecialDatesInner.d.ts +62 -0
  80. package/dist/models/StoreStoreRequestSpecialDatesInner.js +61 -0
  81. package/dist/models/StoreStoreSpecialDateRequest.d.ts +62 -0
  82. package/dist/models/StoreStoreSpecialDateRequest.js +61 -0
  83. package/dist/models/UpdateLabelRequest.d.ts +74 -0
  84. package/dist/models/UpdateLabelRequest.js +63 -0
  85. package/dist/models/UpdateStoreRequest.d.ts +94 -0
  86. package/dist/models/UpdateStoreRequest.js +85 -0
  87. package/dist/models/UpdateStoreRequestSpecialDatesInner.d.ts +56 -0
  88. package/dist/models/UpdateStoreRequestSpecialDatesInner.js +57 -0
  89. package/dist/models/index.d.ts +37 -0
  90. package/dist/models/index.js +37 -0
  91. package/docs/AddressFrontendResource.md +48 -0
  92. package/docs/AddressFrontendResourceArrayResponse.md +34 -0
  93. package/docs/AddressResource.md +50 -0
  94. package/docs/AddressResourceArrayResponse.md +34 -0
  95. package/docs/AttachStoresSupplierRequest.md +34 -0
  96. package/docs/AttachSuppliersStoreRequest.md +34 -0
  97. package/docs/DetachStoresSupplierRequest.md +34 -0
  98. package/docs/DetachSuppliersStoreRequest.md +34 -0
  99. package/docs/GetAllStoreRequest.md +48 -0
  100. package/docs/IndexLabelRequest.md +50 -0
  101. package/docs/IndexStoreRequest.md +52 -0
  102. package/docs/LabelApi.md +407 -0
  103. package/docs/LabelListResource.md +48 -0
  104. package/docs/LabelListResourceArrayResponse.md +34 -0
  105. package/docs/LabelLiteResource.md +42 -0
  106. package/docs/LabelLiteResourceArrayResponse.md +34 -0
  107. package/docs/LabelResource.md +12 -6
  108. package/docs/PaginatedLabelListResourceResponse.md +36 -0
  109. package/docs/PaginatedStoreListResourceResponse.md +36 -0
  110. package/docs/StoreApi.md +755 -0
  111. package/docs/StoreFrontendResource.md +56 -0
  112. package/docs/StoreFrontendResourceArrayResponse.md +34 -0
  113. package/docs/StoreLabelRequest.md +48 -0
  114. package/docs/StoreListResource.md +50 -0
  115. package/docs/StoreListResourceArrayResponse.md +34 -0
  116. package/docs/StoreLiteResource.md +38 -0
  117. package/docs/StoreLiteResourceArrayResponse.md +34 -0
  118. package/docs/StoreResource.md +56 -0
  119. package/docs/StoreResourceArrayResponse.md +34 -0
  120. package/docs/StoreSpecialDateFrontendResource.md +46 -0
  121. package/docs/StoreSpecialDateFrontendResourceArrayResponse.md +34 -0
  122. package/docs/StoreSpecialDateResource.md +46 -0
  123. package/docs/StoreSpecialDateResourceArrayResponse.md +34 -0
  124. package/docs/StoreStoreRequest.md +54 -0
  125. package/docs/StoreStoreRequestAddress.md +46 -0
  126. package/docs/StoreStoreRequestSpecialDatesInner.md +44 -0
  127. package/docs/StoreStoreSpecialDateRequest.md +44 -0
  128. package/docs/SupplierApi.md +138 -0
  129. package/docs/UpdateLabelRequest.md +48 -0
  130. package/docs/UpdateStoreRequest.md +54 -0
  131. package/docs/UpdateStoreRequestSpecialDatesInner.md +42 -0
  132. package/package.json +1 -1
  133. package/src/apis/LabelApi.ts +328 -0
  134. package/src/apis/StoreApi.ts +625 -0
  135. package/src/apis/SupplierApi.ts +112 -0
  136. package/src/apis/index.ts +2 -0
  137. package/src/models/AddressFrontendResource.ts +128 -0
  138. package/src/models/AddressFrontendResourceArrayResponse.ts +73 -0
  139. package/src/models/AddressResource.ts +137 -0
  140. package/src/models/AddressResourceArrayResponse.ts +73 -0
  141. package/src/models/AttachStoresSupplierRequest.ts +66 -0
  142. package/src/models/AttachSuppliersStoreRequest.ts +66 -0
  143. package/src/models/DetachStoresSupplierRequest.ts +66 -0
  144. package/src/models/DetachSuppliersStoreRequest.ts +66 -0
  145. package/src/models/GetAllStoreRequest.ts +144 -0
  146. package/src/models/IndexLabelRequest.ts +163 -0
  147. package/src/models/IndexProductChildRequest.ts +1 -0
  148. package/src/models/IndexStoreRequest.ts +160 -0
  149. package/src/models/LabelListResource.ts +134 -0
  150. package/src/models/LabelListResourceArrayResponse.ts +73 -0
  151. package/src/models/LabelLiteResource.ts +101 -0
  152. package/src/models/LabelLiteResourceArrayResponse.ts +73 -0
  153. package/src/models/LabelResource.ts +46 -12
  154. package/src/models/PaginatedLabelListResourceResponse.ts +90 -0
  155. package/src/models/PaginatedStoreListResourceResponse.ts +90 -0
  156. package/src/models/StoreFrontendResource.ts +162 -0
  157. package/src/models/StoreFrontendResourceArrayResponse.ts +73 -0
  158. package/src/models/StoreLabelRequest.ts +125 -0
  159. package/src/models/StoreListResource.ts +144 -0
  160. package/src/models/StoreListResourceArrayResponse.ts +73 -0
  161. package/src/models/StoreLiteResource.ts +91 -0
  162. package/src/models/StoreLiteResourceArrayResponse.ts +73 -0
  163. package/src/models/StoreResource.ts +191 -0
  164. package/src/models/StoreResourceArrayResponse.ts +73 -0
  165. package/src/models/StoreSpecialDateFrontendResource.ts +118 -0
  166. package/src/models/StoreSpecialDateFrontendResourceArrayResponse.ts +73 -0
  167. package/src/models/StoreSpecialDateResource.ts +118 -0
  168. package/src/models/StoreSpecialDateResourceArrayResponse.ts +73 -0
  169. package/src/models/StoreStoreRequest.ts +167 -0
  170. package/src/models/StoreStoreRequestAddress.ts +119 -0
  171. package/src/models/StoreStoreRequestSpecialDatesInner.ts +106 -0
  172. package/src/models/StoreStoreSpecialDateRequest.ts +106 -0
  173. package/src/models/UpdateLabelRequest.ts +121 -0
  174. package/src/models/UpdateStoreRequest.ts +167 -0
  175. package/src/models/UpdateStoreRequestSpecialDatesInner.ts +97 -0
  176. package/src/models/index.ts +37 -0
@@ -2,6 +2,10 @@
2
2
  .npmignore
3
3
  .openapi-generator-ignore
4
4
  README.md
5
+ docs/AddressFrontendResource.md
6
+ docs/AddressFrontendResourceArrayResponse.md
7
+ docs/AddressResource.md
8
+ docs/AddressResourceArrayResponse.md
5
9
  docs/AdminApi.md
6
10
  docs/AssetApi.md
7
11
  docs/AssetFileForUploadResource.md
@@ -27,6 +31,8 @@ docs/AttachDocumentsProductChildRequestDocumentsInner.md
27
31
  docs/AttachDocumentsProductRangeRequest.md
28
32
  docs/AttachProductTypeAttributeRequest.md
29
33
  docs/AttachProductsProductCategoryRequest.md
34
+ docs/AttachStoresSupplierRequest.md
35
+ docs/AttachSuppliersStoreRequest.md
30
36
  docs/AttributeApi.md
31
37
  docs/AttributeFieldType.md
32
38
  docs/AttributeListResource.md
@@ -66,6 +72,8 @@ docs/DetachDocumentablesDocumentRequestDocumentablesInner.md
66
72
  docs/DetachDocumentsProductChildRequest.md
67
73
  docs/DetachDocumentsProductRangeRequest.md
68
74
  docs/DetachProductsProductCategoryRequest.md
75
+ docs/DetachStoresSupplierRequest.md
76
+ docs/DetachSuppliersStoreRequest.md
69
77
  docs/DocumentApi.md
70
78
  docs/DocumentFileForUploadResource.md
71
79
  docs/DocumentFileForUploadResourceArrayResponse.md
@@ -94,6 +102,7 @@ docs/GetAllProductChildRequest.md
94
102
  docs/GetAllProductRangeRequest.md
95
103
  docs/GetAllProductRequest.md
96
104
  docs/GetAllProductTypeRequest.md
105
+ docs/GetAllStoreRequest.md
97
106
  docs/GetAllSupplierRequest.md
98
107
  docs/GetHierarchyProductCategoryRequest.md
99
108
  docs/GetUniqueEndpointsExternalApiLogRequest.md
@@ -113,6 +122,7 @@ docs/IndexAttributeValueRequest.md
113
122
  docs/IndexDefinitionRequest.md
114
123
  docs/IndexDocumentRequest.md
115
124
  docs/IndexExternalApiLogRequest.md
125
+ docs/IndexLabelRequest.md
116
126
  docs/IndexModelAttributeRequest.md
117
127
  docs/IndexOverlayTemplateRequest.md
118
128
  docs/IndexProductCategoryRequest.md
@@ -122,8 +132,14 @@ docs/IndexProductRequest.md
122
132
  docs/IndexProductTypeRequest.md
123
133
  docs/IndexSiteNotificationRequest.md
124
134
  docs/IndexSiteRequest.md
135
+ docs/IndexStoreRequest.md
125
136
  docs/IndexSupplierRequest.md
126
137
  docs/IndexTagRequest.md
138
+ docs/LabelApi.md
139
+ docs/LabelListResource.md
140
+ docs/LabelListResourceArrayResponse.md
141
+ docs/LabelLiteResource.md
142
+ docs/LabelLiteResourceArrayResponse.md
127
143
  docs/LabelResource.md
128
144
  docs/LabelResourceArrayResponse.md
129
145
  docs/ModelAttributeListResource.md
@@ -154,6 +170,7 @@ docs/PaginatedDocumentResourceResponse.md
154
170
  docs/PaginatedExternalApiLogListResourceResponse.md
155
171
  docs/PaginatedExternalApiLogResourceResponse.md
156
172
  docs/PaginatedGoogleCategoryResourceResponse.md
173
+ docs/PaginatedLabelListResourceResponse.md
157
174
  docs/PaginatedModelAttributeListResourceResponse.md
158
175
  docs/PaginatedOverlayTemplateListResourceResponse.md
159
176
  docs/PaginatedOverlayTemplateLiteResourceResponse.md
@@ -182,6 +199,7 @@ docs/PaginatedSiteLiteResourceResponse.md
182
199
  docs/PaginatedSiteNotificationListResourceResponse.md
183
200
  docs/PaginatedSiteNotificationResourceResponse.md
184
201
  docs/PaginatedSiteResourceResponse.md
202
+ docs/PaginatedStoreListResourceResponse.md
185
203
  docs/PaginatedSupplierFrontendResourceResponse.md
186
204
  docs/PaginatedSupplierListResourceResponse.md
187
205
  docs/PaginatedSupplierLiteResourceResponse.md
@@ -291,6 +309,7 @@ docs/SitePaymentConfigResource.md
291
309
  docs/SitePaymentConfigResourceArrayResponse.md
292
310
  docs/SiteResource.md
293
311
  docs/SiteResourceArrayResponse.md
312
+ docs/StoreApi.md
294
313
  docs/StoreAssetFileRequest.md
295
314
  docs/StoreAssetForAssetableRequest.md
296
315
  docs/StoreAttributeRequest.md
@@ -298,6 +317,13 @@ docs/StoreAttributeValueRequest.md
298
317
  docs/StoreDefinitionRequest.md
299
318
  docs/StoreDocumentFileRequest.md
300
319
  docs/StoreDocumentRequest.md
320
+ docs/StoreFrontendResource.md
321
+ docs/StoreFrontendResourceArrayResponse.md
322
+ docs/StoreLabelRequest.md
323
+ docs/StoreListResource.md
324
+ docs/StoreListResourceArrayResponse.md
325
+ docs/StoreLiteResource.md
326
+ docs/StoreLiteResourceArrayResponse.md
301
327
  docs/StoreOverlayTemplateAssetRequest.md
302
328
  docs/StoreOverlayTemplateRequest.md
303
329
  docs/StoreProductCategoryRequest.md
@@ -313,7 +339,17 @@ docs/StoreProductRangeRequestSitesInner.md
313
339
  docs/StoreProductRequest.md
314
340
  docs/StoreProductRequestCategoriesInner.md
315
341
  docs/StoreProductTypeRequest.md
342
+ docs/StoreResource.md
343
+ docs/StoreResourceArrayResponse.md
316
344
  docs/StoreSiteNotificationRequest.md
345
+ docs/StoreSpecialDateFrontendResource.md
346
+ docs/StoreSpecialDateFrontendResourceArrayResponse.md
347
+ docs/StoreSpecialDateResource.md
348
+ docs/StoreSpecialDateResourceArrayResponse.md
349
+ docs/StoreStoreRequest.md
350
+ docs/StoreStoreRequestAddress.md
351
+ docs/StoreStoreRequestSpecialDatesInner.md
352
+ docs/StoreStoreSpecialDateRequest.md
317
353
  docs/StoreSupplierRequest.md
318
354
  docs/StoreTagRequest.md
319
355
  docs/SupplierApi.md
@@ -342,6 +378,7 @@ docs/UpdateDefinitionRequest.md
342
378
  docs/UpdateDocumentRequest.md
343
379
  docs/UpdateFilterOrderAttributeRequest.md
344
380
  docs/UpdateFilterOrderAttributeRequestValuesInner.md
381
+ docs/UpdateLabelRequest.md
345
382
  docs/UpdateModelAttributeRequest.md
346
383
  docs/UpdateOverlayTemplateAssetRequest.md
347
384
  docs/UpdateOverlayTemplateRequest.md
@@ -354,6 +391,8 @@ docs/UpdateProductRequest.md
354
391
  docs/UpdateProductTypeRequest.md
355
392
  docs/UpdateSiteNotificationRequest.md
356
393
  docs/UpdateSiteRequest.md
394
+ docs/UpdateStoreRequest.md
395
+ docs/UpdateStoreRequestSpecialDatesInner.md
357
396
  docs/UpdateSupplierRequest.md
358
397
  docs/UpdateTagRequest.md
359
398
  docs/WishlistCheckResource.md
@@ -368,16 +407,22 @@ src/apis/DefinitionApi.ts
368
407
  src/apis/DocumentApi.ts
369
408
  src/apis/ExternalApiLogApi.ts
370
409
  src/apis/GoogleCategoryApi.ts
410
+ src/apis/LabelApi.ts
371
411
  src/apis/OverlayTemplateApi.ts
372
412
  src/apis/ProductApi.ts
373
413
  src/apis/ProductCategoryApi.ts
374
414
  src/apis/ProductRangeApi.ts
375
415
  src/apis/ProductTypeApi.ts
376
416
  src/apis/SiteApi.ts
417
+ src/apis/StoreApi.ts
377
418
  src/apis/SupplierApi.ts
378
419
  src/apis/TagApi.ts
379
420
  src/apis/index.ts
380
421
  src/index.ts
422
+ src/models/AddressFrontendResource.ts
423
+ src/models/AddressFrontendResourceArrayResponse.ts
424
+ src/models/AddressResource.ts
425
+ src/models/AddressResourceArrayResponse.ts
381
426
  src/models/AssetFileForUploadResource.ts
382
427
  src/models/AssetFileForUploadResourceArrayResponse.ts
383
428
  src/models/AssetFrontendResource.ts
@@ -401,6 +446,8 @@ src/models/AttachDocumentsProductChildRequestDocumentsInner.ts
401
446
  src/models/AttachDocumentsProductRangeRequest.ts
402
447
  src/models/AttachProductTypeAttributeRequest.ts
403
448
  src/models/AttachProductsProductCategoryRequest.ts
449
+ src/models/AttachStoresSupplierRequest.ts
450
+ src/models/AttachSuppliersStoreRequest.ts
404
451
  src/models/AttributeFieldType.ts
405
452
  src/models/AttributeListResource.ts
406
453
  src/models/AttributeListResourceArrayResponse.ts
@@ -438,6 +485,8 @@ src/models/DetachDocumentablesDocumentRequestDocumentablesInner.ts
438
485
  src/models/DetachDocumentsProductChildRequest.ts
439
486
  src/models/DetachDocumentsProductRangeRequest.ts
440
487
  src/models/DetachProductsProductCategoryRequest.ts
488
+ src/models/DetachStoresSupplierRequest.ts
489
+ src/models/DetachSuppliersStoreRequest.ts
441
490
  src/models/DocumentFileForUploadResource.ts
442
491
  src/models/DocumentFileForUploadResourceArrayResponse.ts
443
492
  src/models/DocumentFrontendResource.ts
@@ -464,6 +513,7 @@ src/models/GetAllProductChildRequest.ts
464
513
  src/models/GetAllProductRangeRequest.ts
465
514
  src/models/GetAllProductRequest.ts
466
515
  src/models/GetAllProductTypeRequest.ts
516
+ src/models/GetAllStoreRequest.ts
467
517
  src/models/GetAllSupplierRequest.ts
468
518
  src/models/GetHierarchyProductCategoryRequest.ts
469
519
  src/models/GetUniqueEndpointsExternalApiLogRequest.ts
@@ -482,6 +532,7 @@ src/models/IndexAttributeValueRequest.ts
482
532
  src/models/IndexDefinitionRequest.ts
483
533
  src/models/IndexDocumentRequest.ts
484
534
  src/models/IndexExternalApiLogRequest.ts
535
+ src/models/IndexLabelRequest.ts
485
536
  src/models/IndexModelAttributeRequest.ts
486
537
  src/models/IndexOverlayTemplateRequest.ts
487
538
  src/models/IndexProductCategoryRequest.ts
@@ -491,8 +542,13 @@ src/models/IndexProductRequest.ts
491
542
  src/models/IndexProductTypeRequest.ts
492
543
  src/models/IndexSiteNotificationRequest.ts
493
544
  src/models/IndexSiteRequest.ts
545
+ src/models/IndexStoreRequest.ts
494
546
  src/models/IndexSupplierRequest.ts
495
547
  src/models/IndexTagRequest.ts
548
+ src/models/LabelListResource.ts
549
+ src/models/LabelListResourceArrayResponse.ts
550
+ src/models/LabelLiteResource.ts
551
+ src/models/LabelLiteResourceArrayResponse.ts
496
552
  src/models/LabelResource.ts
497
553
  src/models/LabelResourceArrayResponse.ts
498
554
  src/models/ModelAttributeListResource.ts
@@ -522,6 +578,7 @@ src/models/PaginatedDocumentResourceResponse.ts
522
578
  src/models/PaginatedExternalApiLogListResourceResponse.ts
523
579
  src/models/PaginatedExternalApiLogResourceResponse.ts
524
580
  src/models/PaginatedGoogleCategoryResourceResponse.ts
581
+ src/models/PaginatedLabelListResourceResponse.ts
525
582
  src/models/PaginatedModelAttributeListResourceResponse.ts
526
583
  src/models/PaginatedOverlayTemplateListResourceResponse.ts
527
584
  src/models/PaginatedOverlayTemplateLiteResourceResponse.ts
@@ -550,6 +607,7 @@ src/models/PaginatedSiteLiteResourceResponse.ts
550
607
  src/models/PaginatedSiteNotificationListResourceResponse.ts
551
608
  src/models/PaginatedSiteNotificationResourceResponse.ts
552
609
  src/models/PaginatedSiteResourceResponse.ts
610
+ src/models/PaginatedStoreListResourceResponse.ts
553
611
  src/models/PaginatedSupplierFrontendResourceResponse.ts
554
612
  src/models/PaginatedSupplierListResourceResponse.ts
555
613
  src/models/PaginatedSupplierLiteResourceResponse.ts
@@ -661,6 +719,13 @@ src/models/StoreAttributeValueRequest.ts
661
719
  src/models/StoreDefinitionRequest.ts
662
720
  src/models/StoreDocumentFileRequest.ts
663
721
  src/models/StoreDocumentRequest.ts
722
+ src/models/StoreFrontendResource.ts
723
+ src/models/StoreFrontendResourceArrayResponse.ts
724
+ src/models/StoreLabelRequest.ts
725
+ src/models/StoreListResource.ts
726
+ src/models/StoreListResourceArrayResponse.ts
727
+ src/models/StoreLiteResource.ts
728
+ src/models/StoreLiteResourceArrayResponse.ts
664
729
  src/models/StoreOverlayTemplateAssetRequest.ts
665
730
  src/models/StoreOverlayTemplateRequest.ts
666
731
  src/models/StoreProductCategoryRequest.ts
@@ -676,7 +741,17 @@ src/models/StoreProductRangeRequestSitesInner.ts
676
741
  src/models/StoreProductRequest.ts
677
742
  src/models/StoreProductRequestCategoriesInner.ts
678
743
  src/models/StoreProductTypeRequest.ts
744
+ src/models/StoreResource.ts
745
+ src/models/StoreResourceArrayResponse.ts
679
746
  src/models/StoreSiteNotificationRequest.ts
747
+ src/models/StoreSpecialDateFrontendResource.ts
748
+ src/models/StoreSpecialDateFrontendResourceArrayResponse.ts
749
+ src/models/StoreSpecialDateResource.ts
750
+ src/models/StoreSpecialDateResourceArrayResponse.ts
751
+ src/models/StoreStoreRequest.ts
752
+ src/models/StoreStoreRequestAddress.ts
753
+ src/models/StoreStoreRequestSpecialDatesInner.ts
754
+ src/models/StoreStoreSpecialDateRequest.ts
680
755
  src/models/StoreSupplierRequest.ts
681
756
  src/models/StoreTagRequest.ts
682
757
  src/models/SupplierFrontendResource.ts
@@ -703,6 +778,7 @@ src/models/UpdateDefinitionRequest.ts
703
778
  src/models/UpdateDocumentRequest.ts
704
779
  src/models/UpdateFilterOrderAttributeRequest.ts
705
780
  src/models/UpdateFilterOrderAttributeRequestValuesInner.ts
781
+ src/models/UpdateLabelRequest.ts
706
782
  src/models/UpdateModelAttributeRequest.ts
707
783
  src/models/UpdateOverlayTemplateAssetRequest.ts
708
784
  src/models/UpdateOverlayTemplateRequest.ts
@@ -715,6 +791,8 @@ src/models/UpdateProductRequest.ts
715
791
  src/models/UpdateProductTypeRequest.ts
716
792
  src/models/UpdateSiteNotificationRequest.ts
717
793
  src/models/UpdateSiteRequest.ts
794
+ src/models/UpdateStoreRequest.ts
795
+ src/models/UpdateStoreRequestSpecialDatesInner.ts
718
796
  src/models/UpdateSupplierRequest.ts
719
797
  src/models/UpdateTagRequest.ts
720
798
  src/models/WishlistCheckResource.ts
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @digital8/lighting-illusions-ts-sdk@0.0.1444
1
+ # @digital8/lighting-illusions-ts-sdk@0.0.1446
2
2
 
3
3
  A TypeScript SDK client for the localhost API.
4
4
 
@@ -92,6 +92,12 @@ All URIs are relative to *http://localhost/api*
92
92
  *ExternalApiLogApi* | [**getUniqueEndpointsExternalApiLog**](docs/ExternalApiLogApi.md#getuniqueendpointsexternalapilogoperation) | **POST** /admin-api/external-api-log/endpoints | Auto-generated: getUniqueEndpointsExternalApiLog
93
93
  *ExternalApiLogApi* | [**indexExternalApiLog**](docs/ExternalApiLogApi.md#indexexternalapilogoperation) | **POST** /admin-api/external-api-log/list | Auto-generated: indexExternalApiLog
94
94
  *GoogleCategoryApi* | [**getAllGoogleCategory**](docs/GoogleCategoryApi.md#getallgooglecategoryoperation) | **POST** /admin-api/google-category/all | Auto-generated: getAllGoogleCategory
95
+ *LabelApi* | [**destroyLabel**](docs/LabelApi.md#destroylabel) | **DELETE** /admin-api/label/{label}/delete | Auto-generated: destroyLabel
96
+ *LabelApi* | [**getAllLabel**](docs/LabelApi.md#getalllabel) | **POST** /admin-api/label/all | Auto-generated: getAllLabel
97
+ *LabelApi* | [**indexLabel**](docs/LabelApi.md#indexlabeloperation) | **POST** /admin-api/label/list | Auto-generated: indexLabel
98
+ *LabelApi* | [**showLabel**](docs/LabelApi.md#showlabel) | **GET** /admin-api/label/{label} | Auto-generated: showLabel
99
+ *LabelApi* | [**storeLabel**](docs/LabelApi.md#storelabeloperation) | **POST** /admin-api/label/create | Auto-generated: storeLabel
100
+ *LabelApi* | [**updateLabel**](docs/LabelApi.md#updatelabeloperation) | **PUT** /admin-api/label/{label}/update | Auto-generated: updateLabel
95
101
  *OverlayTemplateApi* | [**attachAssetsOverlayTemplate**](docs/OverlayTemplateApi.md#attachassetsoverlaytemplateoperation) | **POST** /admin-api/overlay-template/{overlayTemplate}/attach-assets | Auto-generated: attachAssetsOverlayTemplate
96
102
  *OverlayTemplateApi* | [**destroyOverlayTemplate**](docs/OverlayTemplateApi.md#destroyoverlaytemplate) | **DELETE** /admin-api/overlay-template/{overlayTemplate}/delete | Auto-generated: destroyOverlayTemplate
97
103
  *OverlayTemplateApi* | [**destroyOverlayTemplateAsset**](docs/OverlayTemplateApi.md#destroyoverlaytemplateasset) | **DELETE** /admin-api/overlay-template/asset/{overlayTemplateAsset}/delete | Auto-generated: destroyOverlayTemplateAsset
@@ -173,7 +179,20 @@ All URIs are relative to *http://localhost/api*
173
179
  *SiteApi* | [**storeSiteNotification**](docs/SiteApi.md#storesitenotificationoperation) | **POST** /admin-api/site/notification/create | Auto-generated: storeSiteNotification
174
180
  *SiteApi* | [**updateSite**](docs/SiteApi.md#updatesiteoperation) | **PUT** /admin-api/site/{site}/update | Auto-generated: updateSite
175
181
  *SiteApi* | [**updateSiteNotification**](docs/SiteApi.md#updatesitenotificationoperation) | **PUT** /admin-api/site/notification/{siteNotification}/update | Auto-generated: updateSiteNotification
182
+ *StoreApi* | [**attachSuppliersStore**](docs/StoreApi.md#attachsuppliersstoreoperation) | **POST** /admin-api/store/{store}/attach-suppliers | Auto-generated: attachSuppliersStore
183
+ *StoreApi* | [**destroyStore**](docs/StoreApi.md#destroystore) | **DELETE** /admin-api/store/{store}/delete | Auto-generated: destroyStore
184
+ *StoreApi* | [**destroyStoreSpecialDate**](docs/StoreApi.md#destroystorespecialdate) | **DELETE** /admin-api/store/{store}/special-dates/{storeSpecialDate} | Auto-generated: destroyStoreSpecialDate
185
+ *StoreApi* | [**detachSuppliersStore**](docs/StoreApi.md#detachsuppliersstoreoperation) | **POST** /admin-api/store/{store}/detach-suppliers | Auto-generated: detachSuppliersStore
186
+ *StoreApi* | [**getAllStore**](docs/StoreApi.md#getallstoreoperation) | **POST** /admin-api/store/all | Auto-generated: getAllStore
187
+ *StoreApi* | [**indexStore**](docs/StoreApi.md#indexstoreoperation) | **POST** /admin-api/store/list | Auto-generated: indexStore
188
+ *StoreApi* | [**showStore**](docs/StoreApi.md#showstore) | **GET** /admin-api/store/{store} | Auto-generated: showStore
189
+ *StoreApi* | [**storeStore**](docs/StoreApi.md#storestoreoperation) | **POST** /admin-api/store/create | Auto-generated: storeStore
190
+ *StoreApi* | [**storeStoreSpecialDate**](docs/StoreApi.md#storestorespecialdateoperation) | **POST** /admin-api/store/{store}/special-dates | Auto-generated: storeStoreSpecialDate
191
+ *StoreApi* | [**updateStore**](docs/StoreApi.md#updatestoreoperation) | **PUT** /admin-api/store/{store}/update | Auto-generated: updateStore
192
+ *StoreApi* | [**updateStoreSpecialDate**](docs/StoreApi.md#updatestorespecialdate) | **PUT** /admin-api/store/{store}/special-dates/{storeSpecialDate} | Auto-generated: updateStoreSpecialDate
193
+ *SupplierApi* | [**attachStoresSupplier**](docs/SupplierApi.md#attachstoressupplieroperation) | **POST** /admin-api/supplier/{supplier}/attach-stores | Auto-generated: attachStoresSupplier
176
194
  *SupplierApi* | [**destroySupplier**](docs/SupplierApi.md#destroysupplier) | **DELETE** /admin-api/supplier/{supplier}/delete | Auto-generated: destroySupplier
195
+ *SupplierApi* | [**detachStoresSupplier**](docs/SupplierApi.md#detachstoressupplieroperation) | **POST** /admin-api/supplier/{supplier}/detach-stores | Auto-generated: detachStoresSupplier
177
196
  *SupplierApi* | [**exportSupplier**](docs/SupplierApi.md#exportsupplier) | **POST** /admin-api/supplier/export | Auto-generated: exportSupplier
178
197
  *SupplierApi* | [**getAllSupplier**](docs/SupplierApi.md#getallsupplieroperation) | **POST** /admin-api/supplier/all | Auto-generated: getAllSupplier
179
198
  *SupplierApi* | [**importSupplier**](docs/SupplierApi.md#importsupplier) | **POST** /admin-api/supplier/import | Auto-generated: importSupplier
@@ -193,6 +212,10 @@ All URIs are relative to *http://localhost/api*
193
212
 
194
213
  ### Models
195
214
 
215
+ - [AddressFrontendResource](docs/AddressFrontendResource.md)
216
+ - [AddressFrontendResourceArrayResponse](docs/AddressFrontendResourceArrayResponse.md)
217
+ - [AddressResource](docs/AddressResource.md)
218
+ - [AddressResourceArrayResponse](docs/AddressResourceArrayResponse.md)
196
219
  - [AssetFileForUploadResource](docs/AssetFileForUploadResource.md)
197
220
  - [AssetFileForUploadResourceArrayResponse](docs/AssetFileForUploadResourceArrayResponse.md)
198
221
  - [AssetFrontendResource](docs/AssetFrontendResource.md)
@@ -216,6 +239,8 @@ All URIs are relative to *http://localhost/api*
216
239
  - [AttachDocumentsProductRangeRequest](docs/AttachDocumentsProductRangeRequest.md)
217
240
  - [AttachProductTypeAttributeRequest](docs/AttachProductTypeAttributeRequest.md)
218
241
  - [AttachProductsProductCategoryRequest](docs/AttachProductsProductCategoryRequest.md)
242
+ - [AttachStoresSupplierRequest](docs/AttachStoresSupplierRequest.md)
243
+ - [AttachSuppliersStoreRequest](docs/AttachSuppliersStoreRequest.md)
219
244
  - [AttributeFieldType](docs/AttributeFieldType.md)
220
245
  - [AttributeListResource](docs/AttributeListResource.md)
221
246
  - [AttributeListResourceArrayResponse](docs/AttributeListResourceArrayResponse.md)
@@ -253,6 +278,8 @@ All URIs are relative to *http://localhost/api*
253
278
  - [DetachDocumentsProductChildRequest](docs/DetachDocumentsProductChildRequest.md)
254
279
  - [DetachDocumentsProductRangeRequest](docs/DetachDocumentsProductRangeRequest.md)
255
280
  - [DetachProductsProductCategoryRequest](docs/DetachProductsProductCategoryRequest.md)
281
+ - [DetachStoresSupplierRequest](docs/DetachStoresSupplierRequest.md)
282
+ - [DetachSuppliersStoreRequest](docs/DetachSuppliersStoreRequest.md)
256
283
  - [DocumentFileForUploadResource](docs/DocumentFileForUploadResource.md)
257
284
  - [DocumentFileForUploadResourceArrayResponse](docs/DocumentFileForUploadResourceArrayResponse.md)
258
285
  - [DocumentFrontendResource](docs/DocumentFrontendResource.md)
@@ -279,6 +306,7 @@ All URIs are relative to *http://localhost/api*
279
306
  - [GetAllProductRangeRequest](docs/GetAllProductRangeRequest.md)
280
307
  - [GetAllProductRequest](docs/GetAllProductRequest.md)
281
308
  - [GetAllProductTypeRequest](docs/GetAllProductTypeRequest.md)
309
+ - [GetAllStoreRequest](docs/GetAllStoreRequest.md)
282
310
  - [GetAllSupplierRequest](docs/GetAllSupplierRequest.md)
283
311
  - [GetHierarchyProductCategoryRequest](docs/GetHierarchyProductCategoryRequest.md)
284
312
  - [GetUniqueEndpointsExternalApiLogRequest](docs/GetUniqueEndpointsExternalApiLogRequest.md)
@@ -297,6 +325,7 @@ All URIs are relative to *http://localhost/api*
297
325
  - [IndexDefinitionRequest](docs/IndexDefinitionRequest.md)
298
326
  - [IndexDocumentRequest](docs/IndexDocumentRequest.md)
299
327
  - [IndexExternalApiLogRequest](docs/IndexExternalApiLogRequest.md)
328
+ - [IndexLabelRequest](docs/IndexLabelRequest.md)
300
329
  - [IndexModelAttributeRequest](docs/IndexModelAttributeRequest.md)
301
330
  - [IndexOverlayTemplateRequest](docs/IndexOverlayTemplateRequest.md)
302
331
  - [IndexProductCategoryRequest](docs/IndexProductCategoryRequest.md)
@@ -306,8 +335,13 @@ All URIs are relative to *http://localhost/api*
306
335
  - [IndexProductTypeRequest](docs/IndexProductTypeRequest.md)
307
336
  - [IndexSiteNotificationRequest](docs/IndexSiteNotificationRequest.md)
308
337
  - [IndexSiteRequest](docs/IndexSiteRequest.md)
338
+ - [IndexStoreRequest](docs/IndexStoreRequest.md)
309
339
  - [IndexSupplierRequest](docs/IndexSupplierRequest.md)
310
340
  - [IndexTagRequest](docs/IndexTagRequest.md)
341
+ - [LabelListResource](docs/LabelListResource.md)
342
+ - [LabelListResourceArrayResponse](docs/LabelListResourceArrayResponse.md)
343
+ - [LabelLiteResource](docs/LabelLiteResource.md)
344
+ - [LabelLiteResourceArrayResponse](docs/LabelLiteResourceArrayResponse.md)
311
345
  - [LabelResource](docs/LabelResource.md)
312
346
  - [LabelResourceArrayResponse](docs/LabelResourceArrayResponse.md)
313
347
  - [ModelAttributeListResource](docs/ModelAttributeListResource.md)
@@ -337,6 +371,7 @@ All URIs are relative to *http://localhost/api*
337
371
  - [PaginatedExternalApiLogListResourceResponse](docs/PaginatedExternalApiLogListResourceResponse.md)
338
372
  - [PaginatedExternalApiLogResourceResponse](docs/PaginatedExternalApiLogResourceResponse.md)
339
373
  - [PaginatedGoogleCategoryResourceResponse](docs/PaginatedGoogleCategoryResourceResponse.md)
374
+ - [PaginatedLabelListResourceResponse](docs/PaginatedLabelListResourceResponse.md)
340
375
  - [PaginatedModelAttributeListResourceResponse](docs/PaginatedModelAttributeListResourceResponse.md)
341
376
  - [PaginatedOverlayTemplateListResourceResponse](docs/PaginatedOverlayTemplateListResourceResponse.md)
342
377
  - [PaginatedOverlayTemplateLiteResourceResponse](docs/PaginatedOverlayTemplateLiteResourceResponse.md)
@@ -365,6 +400,7 @@ All URIs are relative to *http://localhost/api*
365
400
  - [PaginatedSiteNotificationListResourceResponse](docs/PaginatedSiteNotificationListResourceResponse.md)
366
401
  - [PaginatedSiteNotificationResourceResponse](docs/PaginatedSiteNotificationResourceResponse.md)
367
402
  - [PaginatedSiteResourceResponse](docs/PaginatedSiteResourceResponse.md)
403
+ - [PaginatedStoreListResourceResponse](docs/PaginatedStoreListResourceResponse.md)
368
404
  - [PaginatedSupplierFrontendResourceResponse](docs/PaginatedSupplierFrontendResourceResponse.md)
369
405
  - [PaginatedSupplierListResourceResponse](docs/PaginatedSupplierListResourceResponse.md)
370
406
  - [PaginatedSupplierLiteResourceResponse](docs/PaginatedSupplierLiteResourceResponse.md)
@@ -476,6 +512,13 @@ All URIs are relative to *http://localhost/api*
476
512
  - [StoreDefinitionRequest](docs/StoreDefinitionRequest.md)
477
513
  - [StoreDocumentFileRequest](docs/StoreDocumentFileRequest.md)
478
514
  - [StoreDocumentRequest](docs/StoreDocumentRequest.md)
515
+ - [StoreFrontendResource](docs/StoreFrontendResource.md)
516
+ - [StoreFrontendResourceArrayResponse](docs/StoreFrontendResourceArrayResponse.md)
517
+ - [StoreLabelRequest](docs/StoreLabelRequest.md)
518
+ - [StoreListResource](docs/StoreListResource.md)
519
+ - [StoreListResourceArrayResponse](docs/StoreListResourceArrayResponse.md)
520
+ - [StoreLiteResource](docs/StoreLiteResource.md)
521
+ - [StoreLiteResourceArrayResponse](docs/StoreLiteResourceArrayResponse.md)
479
522
  - [StoreOverlayTemplateAssetRequest](docs/StoreOverlayTemplateAssetRequest.md)
480
523
  - [StoreOverlayTemplateRequest](docs/StoreOverlayTemplateRequest.md)
481
524
  - [StoreProductCategoryRequest](docs/StoreProductCategoryRequest.md)
@@ -491,7 +534,17 @@ All URIs are relative to *http://localhost/api*
491
534
  - [StoreProductRequest](docs/StoreProductRequest.md)
492
535
  - [StoreProductRequestCategoriesInner](docs/StoreProductRequestCategoriesInner.md)
493
536
  - [StoreProductTypeRequest](docs/StoreProductTypeRequest.md)
537
+ - [StoreResource](docs/StoreResource.md)
538
+ - [StoreResourceArrayResponse](docs/StoreResourceArrayResponse.md)
494
539
  - [StoreSiteNotificationRequest](docs/StoreSiteNotificationRequest.md)
540
+ - [StoreSpecialDateFrontendResource](docs/StoreSpecialDateFrontendResource.md)
541
+ - [StoreSpecialDateFrontendResourceArrayResponse](docs/StoreSpecialDateFrontendResourceArrayResponse.md)
542
+ - [StoreSpecialDateResource](docs/StoreSpecialDateResource.md)
543
+ - [StoreSpecialDateResourceArrayResponse](docs/StoreSpecialDateResourceArrayResponse.md)
544
+ - [StoreStoreRequest](docs/StoreStoreRequest.md)
545
+ - [StoreStoreRequestAddress](docs/StoreStoreRequestAddress.md)
546
+ - [StoreStoreRequestSpecialDatesInner](docs/StoreStoreRequestSpecialDatesInner.md)
547
+ - [StoreStoreSpecialDateRequest](docs/StoreStoreSpecialDateRequest.md)
495
548
  - [StoreSupplierRequest](docs/StoreSupplierRequest.md)
496
549
  - [StoreTagRequest](docs/StoreTagRequest.md)
497
550
  - [SupplierFrontendResource](docs/SupplierFrontendResource.md)
@@ -518,6 +571,7 @@ All URIs are relative to *http://localhost/api*
518
571
  - [UpdateDocumentRequest](docs/UpdateDocumentRequest.md)
519
572
  - [UpdateFilterOrderAttributeRequest](docs/UpdateFilterOrderAttributeRequest.md)
520
573
  - [UpdateFilterOrderAttributeRequestValuesInner](docs/UpdateFilterOrderAttributeRequestValuesInner.md)
574
+ - [UpdateLabelRequest](docs/UpdateLabelRequest.md)
521
575
  - [UpdateModelAttributeRequest](docs/UpdateModelAttributeRequest.md)
522
576
  - [UpdateOverlayTemplateAssetRequest](docs/UpdateOverlayTemplateAssetRequest.md)
523
577
  - [UpdateOverlayTemplateRequest](docs/UpdateOverlayTemplateRequest.md)
@@ -530,6 +584,8 @@ All URIs are relative to *http://localhost/api*
530
584
  - [UpdateProductTypeRequest](docs/UpdateProductTypeRequest.md)
531
585
  - [UpdateSiteNotificationRequest](docs/UpdateSiteNotificationRequest.md)
532
586
  - [UpdateSiteRequest](docs/UpdateSiteRequest.md)
587
+ - [UpdateStoreRequest](docs/UpdateStoreRequest.md)
588
+ - [UpdateStoreRequestSpecialDatesInner](docs/UpdateStoreRequestSpecialDatesInner.md)
533
589
  - [UpdateSupplierRequest](docs/UpdateSupplierRequest.md)
534
590
  - [UpdateTagRequest](docs/UpdateTagRequest.md)
535
591
  - [WishlistCheckResource](docs/WishlistCheckResource.md)
@@ -549,7 +605,7 @@ and is automatically generated by the
549
605
  [OpenAPI Generator](https://openapi-generator.tech) project:
550
606
 
551
607
  - API version: `1.0.0`
552
- - Package version: `0.0.1444`
608
+ - Package version: `0.0.1446`
553
609
  - Generator version: `7.20.0`
554
610
  - Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
555
611
 
@@ -0,0 +1,109 @@
1
+ /**
2
+ * My API
3
+ * API documentation for my Laravel app
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import * as runtime from '../runtime';
13
+ import type { GenericResponse, IndexLabelRequest, LabelResource, PaginatedLabelListResourceResponse, StoreLabelRequest, UpdateLabelRequest } from '../models/index';
14
+ export interface DestroyLabelRequest {
15
+ label: number;
16
+ }
17
+ export interface GetAllLabelRequest {
18
+ indexLabelRequest?: IndexLabelRequest;
19
+ }
20
+ export interface IndexLabelOperationRequest {
21
+ indexLabelRequest?: IndexLabelRequest;
22
+ }
23
+ export interface ShowLabelRequest {
24
+ label: number;
25
+ }
26
+ export interface StoreLabelOperationRequest {
27
+ storeLabelRequest?: StoreLabelRequest;
28
+ }
29
+ export interface UpdateLabelOperationRequest {
30
+ label: number;
31
+ updateLabelRequest?: UpdateLabelRequest;
32
+ }
33
+ /**
34
+ *
35
+ */
36
+ export declare class LabelApi extends runtime.BaseAPI {
37
+ /**
38
+ * Creates request options for destroyLabel without sending the request
39
+ */
40
+ destroyLabelRequestOpts(requestParameters: DestroyLabelRequest): Promise<runtime.RequestOpts>;
41
+ /**
42
+ * Auto-generated: destroyLabel
43
+ */
44
+ destroyLabelRaw(requestParameters: DestroyLabelRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GenericResponse>>;
45
+ /**
46
+ * Auto-generated: destroyLabel
47
+ */
48
+ destroyLabel(requestParameters: DestroyLabelRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GenericResponse>;
49
+ /**
50
+ * Creates request options for getAllLabel without sending the request
51
+ */
52
+ getAllLabelRequestOpts(requestParameters: GetAllLabelRequest): Promise<runtime.RequestOpts>;
53
+ /**
54
+ * Auto-generated: getAllLabel
55
+ */
56
+ getAllLabelRaw(requestParameters: GetAllLabelRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<GenericResponse>>;
57
+ /**
58
+ * Auto-generated: getAllLabel
59
+ */
60
+ getAllLabel(requestParameters?: GetAllLabelRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<GenericResponse>;
61
+ /**
62
+ * Creates request options for indexLabel without sending the request
63
+ */
64
+ indexLabelRequestOpts(requestParameters: IndexLabelOperationRequest): Promise<runtime.RequestOpts>;
65
+ /**
66
+ * Auto-generated: indexLabel
67
+ */
68
+ indexLabelRaw(requestParameters: IndexLabelOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<PaginatedLabelListResourceResponse>>;
69
+ /**
70
+ * Auto-generated: indexLabel
71
+ */
72
+ indexLabel(requestParameters?: IndexLabelOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<PaginatedLabelListResourceResponse>;
73
+ /**
74
+ * Creates request options for showLabel without sending the request
75
+ */
76
+ showLabelRequestOpts(requestParameters: ShowLabelRequest): Promise<runtime.RequestOpts>;
77
+ /**
78
+ * Auto-generated: showLabel
79
+ */
80
+ showLabelRaw(requestParameters: ShowLabelRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<LabelResource>>;
81
+ /**
82
+ * Auto-generated: showLabel
83
+ */
84
+ showLabel(requestParameters: ShowLabelRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<LabelResource>;
85
+ /**
86
+ * Creates request options for storeLabel without sending the request
87
+ */
88
+ storeLabelRequestOpts(requestParameters: StoreLabelOperationRequest): Promise<runtime.RequestOpts>;
89
+ /**
90
+ * Auto-generated: storeLabel
91
+ */
92
+ storeLabelRaw(requestParameters: StoreLabelOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<LabelResource>>;
93
+ /**
94
+ * Auto-generated: storeLabel
95
+ */
96
+ storeLabel(requestParameters?: StoreLabelOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<LabelResource>;
97
+ /**
98
+ * Creates request options for updateLabel without sending the request
99
+ */
100
+ updateLabelRequestOpts(requestParameters: UpdateLabelOperationRequest): Promise<runtime.RequestOpts>;
101
+ /**
102
+ * Auto-generated: updateLabel
103
+ */
104
+ updateLabelRaw(requestParameters: UpdateLabelOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<LabelResource>>;
105
+ /**
106
+ * Auto-generated: updateLabel
107
+ */
108
+ updateLabel(requestParameters: UpdateLabelOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<LabelResource>;
109
+ }