@deliverart/sdk-js-integration 2.19.0 → 2.19.1
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.cjs +347 -0
- package/dist/index.d.cts +1106 -8
- package/dist/index.d.ts +1106 -8
- package/dist/index.js +302 -0
- package/package.json +10 -10
package/dist/index.js
CHANGED
|
@@ -14075,6 +14075,8 @@ var integrationTilbyMenuSyncSteps = ["categories", "components", "products"];
|
|
|
14075
14075
|
var integrationTilbyMenuSyncStepSchema = external_exports.enum(integrationTilbyMenuSyncSteps);
|
|
14076
14076
|
var integrationTilbyOrdersSyncSteps = ["orders"];
|
|
14077
14077
|
var integrationTilbyOrdersSyncStepSchema = external_exports.enum(integrationTilbyOrdersSyncSteps);
|
|
14078
|
+
var integrationTilbyStockSyncSteps = ["stock"];
|
|
14079
|
+
var integrationTilbyStockSyncStepSchema = external_exports.enum(integrationTilbyStockSyncSteps);
|
|
14078
14080
|
function createIriSchemas(path) {
|
|
14079
14081
|
return {
|
|
14080
14082
|
iriSchema: iriSchema2(path),
|
|
@@ -14216,6 +14218,9 @@ var integrationTilbySyncMenuProcessIriSchema = iriSchema2(
|
|
|
14216
14218
|
var integrationTilbySyncOrdersProcessIriSchema = iriSchema2(
|
|
14217
14219
|
"/integrations/tilby/:id/sync_orders_processes/:processId"
|
|
14218
14220
|
);
|
|
14221
|
+
var integrationTilbySyncStockProcessIriSchema = iriSchema2(
|
|
14222
|
+
"/integrations/tilby/:id/sync_stock_processes/:processId"
|
|
14223
|
+
);
|
|
14219
14224
|
var integrationTilbySyncFiscalMappingsErrorLogIriSchema = iriSchema2(
|
|
14220
14225
|
"/integrations/tilby/:id/sync_fiscal_mappings_processes/:processId/error_logs/:errorLogId"
|
|
14221
14226
|
);
|
|
@@ -14228,6 +14233,9 @@ var integrationTilbySyncMenuErrorLogIriSchema = iriSchema2(
|
|
|
14228
14233
|
var integrationTilbySyncOrdersErrorLogIriSchema = iriSchema2(
|
|
14229
14234
|
"/integrations/tilby/:id/sync_orders_processes/:processId/error_logs/:errorLogId"
|
|
14230
14235
|
);
|
|
14236
|
+
var integrationTilbySyncStockErrorLogIriSchema = iriSchema2(
|
|
14237
|
+
"/integrations/tilby/:id/sync_stock_processes/:processId/error_logs/:errorLogId"
|
|
14238
|
+
);
|
|
14231
14239
|
var integrationCassaInCloudWebHookSettingIriSchema = iriSchema2(
|
|
14232
14240
|
"/integrations/cassa_in_cloud/:id/webhook_settings/:webHookId"
|
|
14233
14241
|
);
|
|
@@ -14535,6 +14543,48 @@ var integrationTilbyEditableFieldsSchema = external_exports.object({
|
|
|
14535
14543
|
syncSettings: integrationTilbyEditableSyncSettingsSchema.default({}),
|
|
14536
14544
|
provider: integrationProviderSchema.default("deliverart")
|
|
14537
14545
|
});
|
|
14546
|
+
var integrationTilbySupportSellerSchema = external_exports.object({
|
|
14547
|
+
id: external_exports.coerce.number(),
|
|
14548
|
+
name: external_exports.string(),
|
|
14549
|
+
username: external_exports.string().nullable(),
|
|
14550
|
+
email: external_exports.string().nullable(),
|
|
14551
|
+
selected: external_exports.boolean()
|
|
14552
|
+
});
|
|
14553
|
+
var integrationTilbySupportSellersSchema = external_exports.object({
|
|
14554
|
+
count: external_exports.coerce.number(),
|
|
14555
|
+
sellers: external_exports.array(integrationTilbySupportSellerSchema)
|
|
14556
|
+
});
|
|
14557
|
+
var integrationTilbySupportPaymentMethodSchema = external_exports.object({
|
|
14558
|
+
id: external_exports.coerce.number(),
|
|
14559
|
+
name: external_exports.string(),
|
|
14560
|
+
paymentMethodTypeId: external_exports.coerce.number().nullable(),
|
|
14561
|
+
paymentMethodTypeName: external_exports.string().nullable(),
|
|
14562
|
+
selected: external_exports.boolean()
|
|
14563
|
+
});
|
|
14564
|
+
var integrationTilbySupportPaymentMethodsSchema = external_exports.object({
|
|
14565
|
+
count: external_exports.coerce.number(),
|
|
14566
|
+
paymentMethods: external_exports.array(integrationTilbySupportPaymentMethodSchema)
|
|
14567
|
+
});
|
|
14568
|
+
var integrationTilbySupportPaymentMethodTypeSchema = external_exports.object({
|
|
14569
|
+
id: external_exports.coerce.number().nullable(),
|
|
14570
|
+
name: external_exports.string().nullable(),
|
|
14571
|
+
selected: external_exports.boolean()
|
|
14572
|
+
});
|
|
14573
|
+
var integrationTilbySupportPaymentMethodTypesSchema = external_exports.object({
|
|
14574
|
+
count: external_exports.coerce.number(),
|
|
14575
|
+
paymentMethodTypes: external_exports.array(integrationTilbySupportPaymentMethodTypeSchema)
|
|
14576
|
+
});
|
|
14577
|
+
var integrationTilbySupportStockLocationSchema = external_exports.object({
|
|
14578
|
+
id: external_exports.coerce.number(),
|
|
14579
|
+
name: external_exports.string(),
|
|
14580
|
+
uuid: external_exports.string().nullable(),
|
|
14581
|
+
code: external_exports.string().nullable(),
|
|
14582
|
+
selected: external_exports.boolean()
|
|
14583
|
+
});
|
|
14584
|
+
var integrationTilbySupportStockLocationsSchema = external_exports.object({
|
|
14585
|
+
count: external_exports.coerce.number(),
|
|
14586
|
+
stockLocations: external_exports.array(integrationTilbySupportStockLocationSchema)
|
|
14587
|
+
});
|
|
14538
14588
|
var integrationsTilbyQuerySchema = external_exports.object({
|
|
14539
14589
|
"order[createdAt]": sortDirSchema2.optional(),
|
|
14540
14590
|
"order[updatedAt]": sortDirSchema2.optional(),
|
|
@@ -14881,6 +14931,14 @@ var integrationTilbySyncOrdersProcessDetailsSchema = integrationTilbySyncOrdersP
|
|
|
14881
14931
|
errors: external_exports.array(integrationTilbySyncOrdersErrorLogIriSchema)
|
|
14882
14932
|
});
|
|
14883
14933
|
var integrationTilbySyncOrdersProcessesQuerySchema = syncProcessQuerySchema;
|
|
14934
|
+
var integrationTilbySyncStockProcessSchema = syncProcessBaseSchema.extend({
|
|
14935
|
+
currentSteps: external_exports.array(integrationTilbyStockSyncStepSchema)
|
|
14936
|
+
});
|
|
14937
|
+
var integrationTilbySyncStockProcessDetailsSchema = integrationTilbySyncStockProcessSchema.extend({
|
|
14938
|
+
integration: integrationTilbyIriSchema,
|
|
14939
|
+
errors: external_exports.array(integrationTilbySyncStockErrorLogIriSchema)
|
|
14940
|
+
});
|
|
14941
|
+
var integrationTilbySyncStockProcessesQuerySchema = syncProcessQuerySchema;
|
|
14884
14942
|
function createSyncErrorLogSchemas(stepSchema, processSchema) {
|
|
14885
14943
|
const schema = external_exports.object({
|
|
14886
14944
|
id: external_exports.string(),
|
|
@@ -14934,6 +14992,31 @@ var integrationTilbySyncOrdersErrorLogSchemas = createSyncErrorLogSchemas(
|
|
|
14934
14992
|
var integrationTilbySyncOrdersErrorLogSchema = integrationTilbySyncOrdersErrorLogSchemas.schema;
|
|
14935
14993
|
var integrationTilbySyncOrdersErrorLogDetailsSchema = integrationTilbySyncOrdersErrorLogSchemas.detailsSchema;
|
|
14936
14994
|
var integrationTilbySyncOrdersErrorLogsQuerySchema = integrationTilbySyncOrdersErrorLogSchemas.querySchema;
|
|
14995
|
+
var integrationTilbySyncStockErrorLogSchema = external_exports.object({
|
|
14996
|
+
id: external_exports.string(),
|
|
14997
|
+
step: integrationTilbyStockSyncStepSchema,
|
|
14998
|
+
failureCode: integrationTilbyMappingSyncFailureCodeSchema.nullable(),
|
|
14999
|
+
externalId: external_exports.string().nullable(),
|
|
15000
|
+
internalId: external_exports.string().nullable(),
|
|
15001
|
+
message: external_exports.string(),
|
|
15002
|
+
trace: external_exports.string(),
|
|
15003
|
+
createdAt: datetimeSchema2
|
|
15004
|
+
});
|
|
15005
|
+
var integrationTilbySyncStockErrorLogDetailsSchema = integrationTilbySyncStockErrorLogSchema.extend({
|
|
15006
|
+
process: integrationTilbySyncStockProcessIriSchema
|
|
15007
|
+
});
|
|
15008
|
+
var integrationTilbySyncStockErrorLogsQuerySchema = external_exports.object({
|
|
15009
|
+
"order[createdAt]": sortDirSchema2.optional(),
|
|
15010
|
+
step: external_exports.union([integrationTilbyStockSyncStepSchema, external_exports.array(integrationTilbyStockSyncStepSchema)]).optional(),
|
|
15011
|
+
failureCode: external_exports.union([
|
|
15012
|
+
integrationTilbyMappingSyncFailureCodeSchema,
|
|
15013
|
+
external_exports.array(integrationTilbyMappingSyncFailureCodeSchema)
|
|
15014
|
+
]).optional(),
|
|
15015
|
+
externalId: exactStringFilterSchema,
|
|
15016
|
+
internalId: exactStringFilterSchema,
|
|
15017
|
+
...dateFilterShape,
|
|
15018
|
+
page: external_exports.coerce.number().optional()
|
|
15019
|
+
});
|
|
14937
15020
|
var integrationTilbyWebHookSettingSchema = external_exports.object({
|
|
14938
15021
|
id: external_exports.string(),
|
|
14939
15022
|
entityName: external_exports.string(),
|
|
@@ -21594,6 +21677,78 @@ var GetIntegrationTilbyList = class extends AbstractApiRequest197 {
|
|
|
21594
21677
|
return "/integrations/tilby";
|
|
21595
21678
|
}
|
|
21596
21679
|
};
|
|
21680
|
+
var getIntegrationTilbySupportSellersInputSchema = external_exports.undefined();
|
|
21681
|
+
var getIntegrationTilbySupportSellersResponseSchema = integrationTilbySupportSellersSchema;
|
|
21682
|
+
var GetIntegrationTilbySupportSellers = class extends AbstractApiRequest197 {
|
|
21683
|
+
constructor(integrationTilbyId) {
|
|
21684
|
+
super(void 0);
|
|
21685
|
+
this.method = "GET";
|
|
21686
|
+
this.contentType = "application/json";
|
|
21687
|
+
this.accept = "application/json";
|
|
21688
|
+
this.inputSchema = getIntegrationTilbySupportSellersInputSchema;
|
|
21689
|
+
this.outputSchema = getIntegrationTilbySupportSellersResponseSchema;
|
|
21690
|
+
this.querySchema = void 0;
|
|
21691
|
+
this.headersSchema = void 0;
|
|
21692
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21693
|
+
}
|
|
21694
|
+
getPath() {
|
|
21695
|
+
return `/integrations/tilby/${this.integrationTilbyId}/support/sellers`;
|
|
21696
|
+
}
|
|
21697
|
+
};
|
|
21698
|
+
var getIntegrationTilbySupportPaymentMethodsInputSchema = external_exports.undefined();
|
|
21699
|
+
var getIntegrationTilbySupportPaymentMethodsResponseSchema = integrationTilbySupportPaymentMethodsSchema;
|
|
21700
|
+
var GetIntegrationTilbySupportPaymentMethods = class extends AbstractApiRequest197 {
|
|
21701
|
+
constructor(integrationTilbyId) {
|
|
21702
|
+
super(void 0);
|
|
21703
|
+
this.method = "GET";
|
|
21704
|
+
this.contentType = "application/json";
|
|
21705
|
+
this.accept = "application/json";
|
|
21706
|
+
this.inputSchema = getIntegrationTilbySupportPaymentMethodsInputSchema;
|
|
21707
|
+
this.outputSchema = getIntegrationTilbySupportPaymentMethodsResponseSchema;
|
|
21708
|
+
this.querySchema = void 0;
|
|
21709
|
+
this.headersSchema = void 0;
|
|
21710
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21711
|
+
}
|
|
21712
|
+
getPath() {
|
|
21713
|
+
return `/integrations/tilby/${this.integrationTilbyId}/support/payment_methods`;
|
|
21714
|
+
}
|
|
21715
|
+
};
|
|
21716
|
+
var getIntegrationTilbySupportPaymentMethodTypesInputSchema = external_exports.undefined();
|
|
21717
|
+
var getIntegrationTilbySupportPaymentMethodTypesResponseSchema = integrationTilbySupportPaymentMethodTypesSchema;
|
|
21718
|
+
var GetIntegrationTilbySupportPaymentMethodTypes = class extends AbstractApiRequest197 {
|
|
21719
|
+
constructor(integrationTilbyId) {
|
|
21720
|
+
super(void 0);
|
|
21721
|
+
this.method = "GET";
|
|
21722
|
+
this.contentType = "application/json";
|
|
21723
|
+
this.accept = "application/json";
|
|
21724
|
+
this.inputSchema = getIntegrationTilbySupportPaymentMethodTypesInputSchema;
|
|
21725
|
+
this.outputSchema = getIntegrationTilbySupportPaymentMethodTypesResponseSchema;
|
|
21726
|
+
this.querySchema = void 0;
|
|
21727
|
+
this.headersSchema = void 0;
|
|
21728
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21729
|
+
}
|
|
21730
|
+
getPath() {
|
|
21731
|
+
return `/integrations/tilby/${this.integrationTilbyId}/support/payment_method_types`;
|
|
21732
|
+
}
|
|
21733
|
+
};
|
|
21734
|
+
var getIntegrationTilbySupportStockLocationsInputSchema = external_exports.undefined();
|
|
21735
|
+
var getIntegrationTilbySupportStockLocationsResponseSchema = integrationTilbySupportStockLocationsSchema;
|
|
21736
|
+
var GetIntegrationTilbySupportStockLocations = class extends AbstractApiRequest197 {
|
|
21737
|
+
constructor(integrationTilbyId) {
|
|
21738
|
+
super(void 0);
|
|
21739
|
+
this.method = "GET";
|
|
21740
|
+
this.contentType = "application/json";
|
|
21741
|
+
this.accept = "application/json";
|
|
21742
|
+
this.inputSchema = getIntegrationTilbySupportStockLocationsInputSchema;
|
|
21743
|
+
this.outputSchema = getIntegrationTilbySupportStockLocationsResponseSchema;
|
|
21744
|
+
this.querySchema = void 0;
|
|
21745
|
+
this.headersSchema = void 0;
|
|
21746
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21747
|
+
}
|
|
21748
|
+
getPath() {
|
|
21749
|
+
return `/integrations/tilby/${this.integrationTilbyId}/support/stock_locations`;
|
|
21750
|
+
}
|
|
21751
|
+
};
|
|
21597
21752
|
var integrationTilbySyncInputSchema = external_exports.object({
|
|
21598
21753
|
direction: integrationTilbySyncDirectionSchema,
|
|
21599
21754
|
mode: integrationTilbySyncModeSchema
|
|
@@ -21666,6 +21821,22 @@ var IntegrationTilbySyncOrders = class extends AbstractApiRequest197 {
|
|
|
21666
21821
|
return `/integrations/tilby/${this.integrationTilbyId}/sync/orders`;
|
|
21667
21822
|
}
|
|
21668
21823
|
};
|
|
21824
|
+
var IntegrationTilbySyncStock = class extends AbstractApiRequest197 {
|
|
21825
|
+
constructor(integrationTilbyId, input) {
|
|
21826
|
+
super(input);
|
|
21827
|
+
this.method = "POST";
|
|
21828
|
+
this.contentType = "application/json";
|
|
21829
|
+
this.accept = "application/json";
|
|
21830
|
+
this.inputSchema = integrationTilbyInboundOnlySyncInputSchema;
|
|
21831
|
+
this.outputSchema = integrationTilbySyncResponseSchema;
|
|
21832
|
+
this.querySchema = void 0;
|
|
21833
|
+
this.headersSchema = void 0;
|
|
21834
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
21835
|
+
}
|
|
21836
|
+
getPath() {
|
|
21837
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync/stock`;
|
|
21838
|
+
}
|
|
21839
|
+
};
|
|
21669
21840
|
var getIntegrationTilbyDepartmentMappingsQuerySchema = integrationTilbyDepartmentMappingsQuerySchema;
|
|
21670
21841
|
var getIntegrationTilbyDepartmentMappingsInputSchema = external_exports.undefined();
|
|
21671
21842
|
var getIntegrationTilbyDepartmentMappingsResponseSchema = external_exports.array(
|
|
@@ -22488,6 +22659,92 @@ var GetIntegrationTilbySyncOrdersErrorLogDetails = class extends AbstractApiRequ
|
|
|
22488
22659
|
return `/integrations/tilby/${this.integrationTilbyId}/sync_orders_processes/${this.processId}/error_logs/${this.errorLogId}`;
|
|
22489
22660
|
}
|
|
22490
22661
|
};
|
|
22662
|
+
var getIntegrationTilbySyncStockProcessesQuerySchema = integrationTilbySyncStockProcessesQuerySchema;
|
|
22663
|
+
var getIntegrationTilbySyncStockProcessesInputSchema = external_exports.undefined();
|
|
22664
|
+
var getIntegrationTilbySyncStockProcessesResponseSchema = createPaginatedSchema44(
|
|
22665
|
+
integrationTilbySyncStockProcessSchema
|
|
22666
|
+
);
|
|
22667
|
+
var GetIntegrationTilbySyncStockProcesses = class extends AbstractApiRequest197 {
|
|
22668
|
+
constructor(integrationTilbyId, options) {
|
|
22669
|
+
super(void 0, options);
|
|
22670
|
+
this.method = "GET";
|
|
22671
|
+
this.contentType = "application/json";
|
|
22672
|
+
this.accept = "application/json";
|
|
22673
|
+
this.inputSchema = getIntegrationTilbySyncStockProcessesInputSchema;
|
|
22674
|
+
this.outputSchema = getIntegrationTilbySyncStockProcessesResponseSchema;
|
|
22675
|
+
this.querySchema = getIntegrationTilbySyncStockProcessesQuerySchema;
|
|
22676
|
+
this.headersSchema = void 0;
|
|
22677
|
+
this.listItemSchema = integrationTilbySyncStockProcessSchema;
|
|
22678
|
+
this.paginationDefaultEnabled = true;
|
|
22679
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
22680
|
+
}
|
|
22681
|
+
getPath() {
|
|
22682
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_stock_processes`;
|
|
22683
|
+
}
|
|
22684
|
+
};
|
|
22685
|
+
var getIntegrationTilbySyncStockProcessDetailsInputSchema = external_exports.undefined();
|
|
22686
|
+
var getIntegrationTilbySyncStockProcessDetailsResponseSchema = integrationTilbySyncStockProcessDetailsSchema;
|
|
22687
|
+
var GetIntegrationTilbySyncStockProcessDetails = class extends AbstractApiRequest197 {
|
|
22688
|
+
constructor(integrationTilbyId, processId) {
|
|
22689
|
+
super(void 0);
|
|
22690
|
+
this.method = "GET";
|
|
22691
|
+
this.contentType = "application/json";
|
|
22692
|
+
this.accept = "application/json";
|
|
22693
|
+
this.inputSchema = getIntegrationTilbySyncStockProcessDetailsInputSchema;
|
|
22694
|
+
this.outputSchema = getIntegrationTilbySyncStockProcessDetailsResponseSchema;
|
|
22695
|
+
this.querySchema = void 0;
|
|
22696
|
+
this.headersSchema = void 0;
|
|
22697
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
22698
|
+
this.processId = processId;
|
|
22699
|
+
}
|
|
22700
|
+
getPath() {
|
|
22701
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_stock_processes/${this.processId}`;
|
|
22702
|
+
}
|
|
22703
|
+
};
|
|
22704
|
+
var getIntegrationTilbySyncStockErrorLogsQuerySchema = integrationTilbySyncStockErrorLogsQuerySchema;
|
|
22705
|
+
var getIntegrationTilbySyncStockErrorLogsInputSchema = external_exports.undefined();
|
|
22706
|
+
var getIntegrationTilbySyncStockErrorLogsResponseSchema = createPaginatedSchema44(
|
|
22707
|
+
integrationTilbySyncStockErrorLogSchema
|
|
22708
|
+
);
|
|
22709
|
+
var GetIntegrationTilbySyncStockErrorLogs = class extends AbstractApiRequest197 {
|
|
22710
|
+
constructor(integrationTilbyId, processId, options) {
|
|
22711
|
+
super(void 0, options);
|
|
22712
|
+
this.method = "GET";
|
|
22713
|
+
this.contentType = "application/json";
|
|
22714
|
+
this.accept = "application/json";
|
|
22715
|
+
this.inputSchema = getIntegrationTilbySyncStockErrorLogsInputSchema;
|
|
22716
|
+
this.outputSchema = getIntegrationTilbySyncStockErrorLogsResponseSchema;
|
|
22717
|
+
this.querySchema = getIntegrationTilbySyncStockErrorLogsQuerySchema;
|
|
22718
|
+
this.headersSchema = void 0;
|
|
22719
|
+
this.listItemSchema = integrationTilbySyncStockErrorLogSchema;
|
|
22720
|
+
this.paginationDefaultEnabled = true;
|
|
22721
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
22722
|
+
this.processId = processId;
|
|
22723
|
+
}
|
|
22724
|
+
getPath() {
|
|
22725
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_stock_processes/${this.processId}/error_logs`;
|
|
22726
|
+
}
|
|
22727
|
+
};
|
|
22728
|
+
var getIntegrationTilbySyncStockErrorLogDetailsInputSchema = external_exports.undefined();
|
|
22729
|
+
var getIntegrationTilbySyncStockErrorLogDetailsResponseSchema = integrationTilbySyncStockErrorLogDetailsSchema;
|
|
22730
|
+
var GetIntegrationTilbySyncStockErrorLogDetails = class extends AbstractApiRequest197 {
|
|
22731
|
+
constructor(integrationTilbyId, processId, errorLogId) {
|
|
22732
|
+
super(void 0);
|
|
22733
|
+
this.method = "GET";
|
|
22734
|
+
this.contentType = "application/json";
|
|
22735
|
+
this.accept = "application/json";
|
|
22736
|
+
this.inputSchema = getIntegrationTilbySyncStockErrorLogDetailsInputSchema;
|
|
22737
|
+
this.outputSchema = getIntegrationTilbySyncStockErrorLogDetailsResponseSchema;
|
|
22738
|
+
this.querySchema = void 0;
|
|
22739
|
+
this.headersSchema = void 0;
|
|
22740
|
+
this.integrationTilbyId = integrationTilbyId;
|
|
22741
|
+
this.processId = processId;
|
|
22742
|
+
this.errorLogId = errorLogId;
|
|
22743
|
+
}
|
|
22744
|
+
getPath() {
|
|
22745
|
+
return `/integrations/tilby/${this.integrationTilbyId}/sync_stock_processes/${this.processId}/error_logs/${this.errorLogId}`;
|
|
22746
|
+
}
|
|
22747
|
+
};
|
|
22491
22748
|
var getIntegrationTilbyWebHookSettingsQuerySchema = integrationTilbyWebHookSettingsQuerySchema;
|
|
22492
22749
|
var getIntegrationTilbyWebHookSettingsInputSchema = external_exports.undefined();
|
|
22493
22750
|
var getIntegrationTilbyWebHookSettingsResponseSchema = external_exports.array(
|
|
@@ -22775,6 +23032,10 @@ export {
|
|
|
22775
23032
|
GetIntegrationTilbyProductMappings,
|
|
22776
23033
|
GetIntegrationTilbyProductVariantMappingDetails,
|
|
22777
23034
|
GetIntegrationTilbyProductVariantMappings,
|
|
23035
|
+
GetIntegrationTilbySupportPaymentMethodTypes,
|
|
23036
|
+
GetIntegrationTilbySupportPaymentMethods,
|
|
23037
|
+
GetIntegrationTilbySupportSellers,
|
|
23038
|
+
GetIntegrationTilbySupportStockLocations,
|
|
22778
23039
|
GetIntegrationTilbySyncCustomersErrorLogDetails,
|
|
22779
23040
|
GetIntegrationTilbySyncCustomersErrorLogs,
|
|
22780
23041
|
GetIntegrationTilbySyncCustomersProcessDetails,
|
|
@@ -22791,6 +23052,10 @@ export {
|
|
|
22791
23052
|
GetIntegrationTilbySyncOrdersErrorLogs,
|
|
22792
23053
|
GetIntegrationTilbySyncOrdersProcessDetails,
|
|
22793
23054
|
GetIntegrationTilbySyncOrdersProcesses,
|
|
23055
|
+
GetIntegrationTilbySyncStockErrorLogDetails,
|
|
23056
|
+
GetIntegrationTilbySyncStockErrorLogs,
|
|
23057
|
+
GetIntegrationTilbySyncStockProcessDetails,
|
|
23058
|
+
GetIntegrationTilbySyncStockProcesses,
|
|
22794
23059
|
GetIntegrationTilbyVatMappingDetails,
|
|
22795
23060
|
GetIntegrationTilbyVatMappings,
|
|
22796
23061
|
GetIntegrationTilbyWebHookEventDetails,
|
|
@@ -22819,6 +23084,7 @@ export {
|
|
|
22819
23084
|
IntegrationTilbySyncFiscalMappings,
|
|
22820
23085
|
IntegrationTilbySyncMenu,
|
|
22821
23086
|
IntegrationTilbySyncOrders,
|
|
23087
|
+
IntegrationTilbySyncStock,
|
|
22822
23088
|
RespondIntegrationActivationRequest,
|
|
22823
23089
|
RespondLeadIntegration,
|
|
22824
23090
|
SendIntegrationActivationRequestToPartner,
|
|
@@ -23296,6 +23562,14 @@ export {
|
|
|
23296
23562
|
getIntegrationTilbyProductVariantMappingsInputSchema,
|
|
23297
23563
|
getIntegrationTilbyProductVariantMappingsQuerySchema,
|
|
23298
23564
|
getIntegrationTilbyProductVariantMappingsResponseSchema,
|
|
23565
|
+
getIntegrationTilbySupportPaymentMethodTypesInputSchema,
|
|
23566
|
+
getIntegrationTilbySupportPaymentMethodTypesResponseSchema,
|
|
23567
|
+
getIntegrationTilbySupportPaymentMethodsInputSchema,
|
|
23568
|
+
getIntegrationTilbySupportPaymentMethodsResponseSchema,
|
|
23569
|
+
getIntegrationTilbySupportSellersInputSchema,
|
|
23570
|
+
getIntegrationTilbySupportSellersResponseSchema,
|
|
23571
|
+
getIntegrationTilbySupportStockLocationsInputSchema,
|
|
23572
|
+
getIntegrationTilbySupportStockLocationsResponseSchema,
|
|
23299
23573
|
getIntegrationTilbySyncCustomersErrorLogDetailsInputSchema,
|
|
23300
23574
|
getIntegrationTilbySyncCustomersErrorLogDetailsResponseSchema,
|
|
23301
23575
|
getIntegrationTilbySyncCustomersErrorLogsInputSchema,
|
|
@@ -23336,6 +23610,16 @@ export {
|
|
|
23336
23610
|
getIntegrationTilbySyncOrdersProcessesInputSchema,
|
|
23337
23611
|
getIntegrationTilbySyncOrdersProcessesQuerySchema,
|
|
23338
23612
|
getIntegrationTilbySyncOrdersProcessesResponseSchema,
|
|
23613
|
+
getIntegrationTilbySyncStockErrorLogDetailsInputSchema,
|
|
23614
|
+
getIntegrationTilbySyncStockErrorLogDetailsResponseSchema,
|
|
23615
|
+
getIntegrationTilbySyncStockErrorLogsInputSchema,
|
|
23616
|
+
getIntegrationTilbySyncStockErrorLogsQuerySchema,
|
|
23617
|
+
getIntegrationTilbySyncStockErrorLogsResponseSchema,
|
|
23618
|
+
getIntegrationTilbySyncStockProcessDetailsInputSchema,
|
|
23619
|
+
getIntegrationTilbySyncStockProcessDetailsResponseSchema,
|
|
23620
|
+
getIntegrationTilbySyncStockProcessesInputSchema,
|
|
23621
|
+
getIntegrationTilbySyncStockProcessesQuerySchema,
|
|
23622
|
+
getIntegrationTilbySyncStockProcessesResponseSchema,
|
|
23339
23623
|
getIntegrationTilbyVatMappingDetailsInputSchema,
|
|
23340
23624
|
getIntegrationTilbyVatMappingDetailsResponseSchema,
|
|
23341
23625
|
getIntegrationTilbyVatMappingsInputSchema,
|
|
@@ -23750,6 +24034,16 @@ export {
|
|
|
23750
24034
|
integrationTilbyProductVariantMappingSchema,
|
|
23751
24035
|
integrationTilbyProductVariantMappingsQuerySchema,
|
|
23752
24036
|
integrationTilbySchema,
|
|
24037
|
+
integrationTilbyStockSyncStepSchema,
|
|
24038
|
+
integrationTilbyStockSyncSteps,
|
|
24039
|
+
integrationTilbySupportPaymentMethodSchema,
|
|
24040
|
+
integrationTilbySupportPaymentMethodTypeSchema,
|
|
24041
|
+
integrationTilbySupportPaymentMethodTypesSchema,
|
|
24042
|
+
integrationTilbySupportPaymentMethodsSchema,
|
|
24043
|
+
integrationTilbySupportSellerSchema,
|
|
24044
|
+
integrationTilbySupportSellersSchema,
|
|
24045
|
+
integrationTilbySupportStockLocationSchema,
|
|
24046
|
+
integrationTilbySupportStockLocationsSchema,
|
|
23753
24047
|
integrationTilbySyncCustomersErrorLogDetailsSchema,
|
|
23754
24048
|
integrationTilbySyncCustomersErrorLogIriSchema,
|
|
23755
24049
|
integrationTilbySyncCustomersErrorLogSchema,
|
|
@@ -23788,6 +24082,14 @@ export {
|
|
|
23788
24082
|
integrationTilbySyncOrdersProcessesQuerySchema,
|
|
23789
24083
|
integrationTilbySyncResponseSchema,
|
|
23790
24084
|
integrationTilbySyncSettingsSchema,
|
|
24085
|
+
integrationTilbySyncStockErrorLogDetailsSchema,
|
|
24086
|
+
integrationTilbySyncStockErrorLogIriSchema,
|
|
24087
|
+
integrationTilbySyncStockErrorLogSchema,
|
|
24088
|
+
integrationTilbySyncStockErrorLogsQuerySchema,
|
|
24089
|
+
integrationTilbySyncStockProcessDetailsSchema,
|
|
24090
|
+
integrationTilbySyncStockProcessIriSchema,
|
|
24091
|
+
integrationTilbySyncStockProcessSchema,
|
|
24092
|
+
integrationTilbySyncStockProcessesQuerySchema,
|
|
23791
24093
|
integrationTilbySyncTimesSchema,
|
|
23792
24094
|
integrationTilbyVatMappingDetailsSchema,
|
|
23793
24095
|
integrationTilbyVatMappingEditableFieldsSchema,
|
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.19.
|
|
4
|
+
"version": "2.19.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -18,15 +18,15 @@
|
|
|
18
18
|
"dist"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@deliverart/sdk-js-api-token": "2.19.
|
|
22
|
-
"@deliverart/sdk-js-
|
|
23
|
-
"@deliverart/sdk-js-
|
|
24
|
-
"@deliverart/sdk-js-
|
|
25
|
-
"@deliverart/sdk-js-
|
|
26
|
-
"@deliverart/sdk-js-order": "2.19.
|
|
27
|
-
"@deliverart/sdk-js-
|
|
28
|
-
"@deliverart/sdk-js-point-of-sale": "2.19.
|
|
29
|
-
"@deliverart/sdk-js-
|
|
21
|
+
"@deliverart/sdk-js-api-token": "2.19.1",
|
|
22
|
+
"@deliverart/sdk-js-customer": "2.19.1",
|
|
23
|
+
"@deliverart/sdk-js-global-types": "2.19.1",
|
|
24
|
+
"@deliverart/sdk-js-core": "2.19.1",
|
|
25
|
+
"@deliverart/sdk-js-image": "2.19.1",
|
|
26
|
+
"@deliverart/sdk-js-order": "2.19.1",
|
|
27
|
+
"@deliverart/sdk-js-menu": "2.19.1",
|
|
28
|
+
"@deliverart/sdk-js-point-of-sale": "2.19.1",
|
|
29
|
+
"@deliverart/sdk-js-sales-mode": "2.19.1"
|
|
30
30
|
},
|
|
31
31
|
"publishConfig": {
|
|
32
32
|
"access": "public"
|