@deliverart/sdk-js-integration 2.23.5 → 2.23.7

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/dist/index.js CHANGED
@@ -188,6 +188,9 @@ __export(index_exports, {
188
188
  GetIntegrationKitchenList: () => GetIntegrationKitchenList,
189
189
  GetIntegrationTilbyCategoryMappingDetails: () => GetIntegrationTilbyCategoryMappingDetails,
190
190
  GetIntegrationTilbyCategoryMappings: () => GetIntegrationTilbyCategoryMappings,
191
+ GetIntegrationTilbyClientLogRequestDetails: () => GetIntegrationTilbyClientLogRequestDetails,
192
+ GetIntegrationTilbyClientLogRequests: () => GetIntegrationTilbyClientLogRequests,
193
+ GetIntegrationTilbyClientLogRequestsFromOrder: () => GetIntegrationTilbyClientLogRequestsFromOrder,
191
194
  GetIntegrationTilbyComponentMappingDetails: () => GetIntegrationTilbyComponentMappingDetails,
192
195
  GetIntegrationTilbyComponentMappings: () => GetIntegrationTilbyComponentMappings,
193
196
  GetIntegrationTilbyCustomerMappingDetails: () => GetIntegrationTilbyCustomerMappingDetails,
@@ -195,6 +198,7 @@ __export(index_exports, {
195
198
  GetIntegrationTilbyDepartmentMappingDetails: () => GetIntegrationTilbyDepartmentMappingDetails,
196
199
  GetIntegrationTilbyDepartmentMappings: () => GetIntegrationTilbyDepartmentMappings,
197
200
  GetIntegrationTilbyDetails: () => GetIntegrationTilbyDetails,
201
+ GetIntegrationTilbyGlobalClientLogRequests: () => GetIntegrationTilbyGlobalClientLogRequests,
198
202
  GetIntegrationTilbyList: () => GetIntegrationTilbyList,
199
203
  GetIntegrationTilbyOrderMappingDetails: () => GetIntegrationTilbyOrderMappingDetails,
200
204
  GetIntegrationTilbyOrderMappings: () => GetIntegrationTilbyOrderMappings,
@@ -697,6 +701,14 @@ __export(index_exports, {
697
701
  getIntegrationTilbyCategoryMappingsInputSchema: () => getIntegrationTilbyCategoryMappingsInputSchema,
698
702
  getIntegrationTilbyCategoryMappingsQuerySchema: () => getIntegrationTilbyCategoryMappingsQuerySchema,
699
703
  getIntegrationTilbyCategoryMappingsResponseSchema: () => getIntegrationTilbyCategoryMappingsResponseSchema,
704
+ getIntegrationTilbyClientLogRequestDetailsInputSchema: () => getIntegrationTilbyClientLogRequestDetailsInputSchema,
705
+ getIntegrationTilbyClientLogRequestDetailsResponseSchema: () => getIntegrationTilbyClientLogRequestDetailsResponseSchema,
706
+ getIntegrationTilbyClientLogRequestsFromOrderInputSchema: () => getIntegrationTilbyClientLogRequestsFromOrderInputSchema,
707
+ getIntegrationTilbyClientLogRequestsFromOrderQuerySchema: () => getIntegrationTilbyClientLogRequestsFromOrderQuerySchema,
708
+ getIntegrationTilbyClientLogRequestsFromOrderResponseSchema: () => getIntegrationTilbyClientLogRequestsFromOrderResponseSchema,
709
+ getIntegrationTilbyClientLogRequestsInputSchema: () => getIntegrationTilbyClientLogRequestsInputSchema,
710
+ getIntegrationTilbyClientLogRequestsQuerySchema: () => getIntegrationTilbyClientLogRequestsQuerySchema,
711
+ getIntegrationTilbyClientLogRequestsResponseSchema: () => getIntegrationTilbyClientLogRequestsResponseSchema,
700
712
  getIntegrationTilbyComponentMappingDetailsInputSchema: () => getIntegrationTilbyComponentMappingDetailsInputSchema,
701
713
  getIntegrationTilbyComponentMappingDetailsResponseSchema: () => getIntegrationTilbyComponentMappingDetailsResponseSchema,
702
714
  getIntegrationTilbyComponentMappingsInputSchema: () => getIntegrationTilbyComponentMappingsInputSchema,
@@ -714,6 +726,9 @@ __export(index_exports, {
714
726
  getIntegrationTilbyDepartmentMappingsResponseSchema: () => getIntegrationTilbyDepartmentMappingsResponseSchema,
715
727
  getIntegrationTilbyDetailsInputSchema: () => getIntegrationTilbyDetailsInputSchema,
716
728
  getIntegrationTilbyDetailsResponseSchema: () => getIntegrationTilbyDetailsResponseSchema,
729
+ getIntegrationTilbyGlobalClientLogRequestsInputSchema: () => getIntegrationTilbyGlobalClientLogRequestsInputSchema,
730
+ getIntegrationTilbyGlobalClientLogRequestsQuerySchema: () => getIntegrationTilbyGlobalClientLogRequestsQuerySchema,
731
+ getIntegrationTilbyGlobalClientLogRequestsResponseSchema: () => getIntegrationTilbyGlobalClientLogRequestsResponseSchema,
717
732
  getIntegrationTilbyListInputSchema: () => getIntegrationTilbyListInputSchema,
718
733
  getIntegrationTilbyListQuerySchema: () => getIntegrationTilbyListQuerySchema,
719
734
  getIntegrationTilbyListResponseSchema: () => getIntegrationTilbyListResponseSchema,
@@ -23067,6 +23082,95 @@ var GetIntegrationTilbyOrderMappingDetails = class extends AbstractApiRequest202
23067
23082
  return `/integrations/tilby/${this.integrationTilbyId}/order_mappings/${this.mappingId}`;
23068
23083
  }
23069
23084
  };
23085
+ var getIntegrationTilbyGlobalClientLogRequestsQuerySchema = clientLogRequestQuerySchema;
23086
+ var getIntegrationTilbyGlobalClientLogRequestsInputSchema = external_exports.undefined();
23087
+ var getIntegrationTilbyGlobalClientLogRequestsResponseSchema = createPaginatedSchema45(
23088
+ integrationClientLogRequestSchema
23089
+ );
23090
+ var GetIntegrationTilbyGlobalClientLogRequests = class extends AbstractApiRequest202 {
23091
+ constructor(options) {
23092
+ super(void 0, options);
23093
+ this.method = "GET";
23094
+ this.contentType = "application/json";
23095
+ this.accept = "application/json";
23096
+ this.inputSchema = getIntegrationTilbyGlobalClientLogRequestsInputSchema;
23097
+ this.outputSchema = getIntegrationTilbyGlobalClientLogRequestsResponseSchema;
23098
+ this.querySchema = getIntegrationTilbyGlobalClientLogRequestsQuerySchema;
23099
+ this.headersSchema = void 0;
23100
+ this.listItemSchema = integrationClientLogRequestSchema;
23101
+ this.paginationDefaultEnabled = true;
23102
+ }
23103
+ getPath() {
23104
+ return "/integrations/tilby/client_log_requests";
23105
+ }
23106
+ };
23107
+ var getIntegrationTilbyClientLogRequestsQuerySchema = clientLogRequestQuerySchema;
23108
+ var getIntegrationTilbyClientLogRequestsInputSchema = external_exports.undefined();
23109
+ var getIntegrationTilbyClientLogRequestsResponseSchema = createPaginatedSchema45(
23110
+ integrationClientLogRequestSchema
23111
+ );
23112
+ var GetIntegrationTilbyClientLogRequests = class extends AbstractApiRequest202 {
23113
+ constructor(integrationTilbyId, options) {
23114
+ super(void 0, options);
23115
+ this.method = "GET";
23116
+ this.contentType = "application/json";
23117
+ this.accept = "application/json";
23118
+ this.inputSchema = getIntegrationTilbyClientLogRequestsInputSchema;
23119
+ this.outputSchema = getIntegrationTilbyClientLogRequestsResponseSchema;
23120
+ this.querySchema = getIntegrationTilbyClientLogRequestsQuerySchema;
23121
+ this.headersSchema = void 0;
23122
+ this.listItemSchema = integrationClientLogRequestSchema;
23123
+ this.paginationDefaultEnabled = true;
23124
+ this.integrationTilbyId = integrationTilbyId;
23125
+ }
23126
+ getPath() {
23127
+ return `/integrations/tilby/${this.integrationTilbyId}/client_log_requests`;
23128
+ }
23129
+ };
23130
+ var getIntegrationTilbyClientLogRequestDetailsInputSchema = external_exports.undefined();
23131
+ var getIntegrationTilbyClientLogRequestDetailsResponseSchema = integrationClientLogRequestDetailsSchema;
23132
+ var GetIntegrationTilbyClientLogRequestDetails = class extends AbstractApiRequest202 {
23133
+ constructor(integrationTilbyId, requestId) {
23134
+ super(void 0);
23135
+ this.method = "GET";
23136
+ this.contentType = "application/json";
23137
+ this.accept = "application/json";
23138
+ this.inputSchema = getIntegrationTilbyClientLogRequestDetailsInputSchema;
23139
+ this.outputSchema = getIntegrationTilbyClientLogRequestDetailsResponseSchema;
23140
+ this.querySchema = void 0;
23141
+ this.headersSchema = void 0;
23142
+ this.integrationTilbyId = integrationTilbyId;
23143
+ this.requestId = requestId;
23144
+ }
23145
+ getPath() {
23146
+ return `/integrations/tilby/${this.integrationTilbyId}/client_log_requests/${this.requestId}`;
23147
+ }
23148
+ };
23149
+ var getIntegrationTilbyClientLogRequestsFromOrderQuerySchema = clientLogRequestQuerySchema.omit({
23150
+ page: true
23151
+ });
23152
+ var getIntegrationTilbyClientLogRequestsFromOrderInputSchema = external_exports.undefined();
23153
+ var getIntegrationTilbyClientLogRequestsFromOrderResponseSchema = external_exports.array(
23154
+ integrationClientLogRequestSchema
23155
+ );
23156
+ var GetIntegrationTilbyClientLogRequestsFromOrder = class extends AbstractApiRequest202 {
23157
+ constructor(orderId, options) {
23158
+ super(void 0, options);
23159
+ this.method = "GET";
23160
+ this.contentType = "application/json";
23161
+ this.accept = "application/json";
23162
+ this.inputSchema = getIntegrationTilbyClientLogRequestsFromOrderInputSchema;
23163
+ this.outputSchema = getIntegrationTilbyClientLogRequestsFromOrderResponseSchema;
23164
+ this.querySchema = getIntegrationTilbyClientLogRequestsFromOrderQuerySchema;
23165
+ this.headersSchema = void 0;
23166
+ this.listItemSchema = integrationClientLogRequestSchema;
23167
+ this.paginationDefaultEnabled = false;
23168
+ this.orderId = orderId;
23169
+ }
23170
+ getPath() {
23171
+ return `/orders/${this.orderId}/tilby_client_log_requests`;
23172
+ }
23173
+ };
23070
23174
  var getIntegrationTilbyOrderMappingsFromOrderQuerySchema = integrationTilbyOrderMappingsQuerySchema.omit({
23071
23175
  page: true
23072
23176
  });
@@ -23800,6 +23904,9 @@ export {
23800
23904
  GetIntegrationKitchenList,
23801
23905
  GetIntegrationTilbyCategoryMappingDetails,
23802
23906
  GetIntegrationTilbyCategoryMappings,
23907
+ GetIntegrationTilbyClientLogRequestDetails,
23908
+ GetIntegrationTilbyClientLogRequests,
23909
+ GetIntegrationTilbyClientLogRequestsFromOrder,
23803
23910
  GetIntegrationTilbyComponentMappingDetails,
23804
23911
  GetIntegrationTilbyComponentMappings,
23805
23912
  GetIntegrationTilbyCustomerMappingDetails,
@@ -23807,6 +23914,7 @@ export {
23807
23914
  GetIntegrationTilbyDepartmentMappingDetails,
23808
23915
  GetIntegrationTilbyDepartmentMappings,
23809
23916
  GetIntegrationTilbyDetails,
23917
+ GetIntegrationTilbyGlobalClientLogRequests,
23810
23918
  GetIntegrationTilbyList,
23811
23919
  GetIntegrationTilbyOrderMappingDetails,
23812
23920
  GetIntegrationTilbyOrderMappings,
@@ -24309,6 +24417,14 @@ export {
24309
24417
  getIntegrationTilbyCategoryMappingsInputSchema,
24310
24418
  getIntegrationTilbyCategoryMappingsQuerySchema,
24311
24419
  getIntegrationTilbyCategoryMappingsResponseSchema,
24420
+ getIntegrationTilbyClientLogRequestDetailsInputSchema,
24421
+ getIntegrationTilbyClientLogRequestDetailsResponseSchema,
24422
+ getIntegrationTilbyClientLogRequestsFromOrderInputSchema,
24423
+ getIntegrationTilbyClientLogRequestsFromOrderQuerySchema,
24424
+ getIntegrationTilbyClientLogRequestsFromOrderResponseSchema,
24425
+ getIntegrationTilbyClientLogRequestsInputSchema,
24426
+ getIntegrationTilbyClientLogRequestsQuerySchema,
24427
+ getIntegrationTilbyClientLogRequestsResponseSchema,
24312
24428
  getIntegrationTilbyComponentMappingDetailsInputSchema,
24313
24429
  getIntegrationTilbyComponentMappingDetailsResponseSchema,
24314
24430
  getIntegrationTilbyComponentMappingsInputSchema,
@@ -24326,6 +24442,9 @@ export {
24326
24442
  getIntegrationTilbyDepartmentMappingsResponseSchema,
24327
24443
  getIntegrationTilbyDetailsInputSchema,
24328
24444
  getIntegrationTilbyDetailsResponseSchema,
24445
+ getIntegrationTilbyGlobalClientLogRequestsInputSchema,
24446
+ getIntegrationTilbyGlobalClientLogRequestsQuerySchema,
24447
+ getIntegrationTilbyGlobalClientLogRequestsResponseSchema,
24329
24448
  getIntegrationTilbyListInputSchema,
24330
24449
  getIntegrationTilbyListQuerySchema,
24331
24450
  getIntegrationTilbyListResponseSchema,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@deliverart/sdk-js-integration",
3
3
  "description": "Deliverart JavaScript SDK for Integration Management",
4
- "version": "2.23.5",
4
+ "version": "2.23.7",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -18,16 +18,16 @@
18
18
  "dist"
19
19
  ],
20
20
  "dependencies": {
21
- "@deliverart/sdk-js-api-token": "2.23.5",
22
- "@deliverart/sdk-js-customer": "2.23.5",
23
- "@deliverart/sdk-js-image": "2.23.5",
24
- "@deliverart/sdk-js-core": "2.23.5",
25
- "@deliverart/sdk-js-global-types": "2.23.5",
26
- "@deliverart/sdk-js-integration-types": "2.23.5",
27
- "@deliverart/sdk-js-order": "2.23.5",
28
- "@deliverart/sdk-js-menu": "2.23.5",
29
- "@deliverart/sdk-js-point-of-sale": "2.23.5",
30
- "@deliverart/sdk-js-sales-mode": "2.23.5"
21
+ "@deliverart/sdk-js-api-token": "2.23.7",
22
+ "@deliverart/sdk-js-customer": "2.23.7",
23
+ "@deliverart/sdk-js-global-types": "2.23.7",
24
+ "@deliverart/sdk-js-menu": "2.23.7",
25
+ "@deliverart/sdk-js-core": "2.23.7",
26
+ "@deliverart/sdk-js-integration-types": "2.23.7",
27
+ "@deliverart/sdk-js-order": "2.23.7",
28
+ "@deliverart/sdk-js-point-of-sale": "2.23.7",
29
+ "@deliverart/sdk-js-sales-mode": "2.23.7",
30
+ "@deliverart/sdk-js-image": "2.23.7"
31
31
  },
32
32
  "publishConfig": {
33
33
  "access": "public"