@djust-b2b/djust-front-sdk 3.2.0 → 3.2.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/dist/.tsbuildinfo +1 -1
- package/dist/.tsbuildinfo-esm +1 -1
- package/dist/client/create-client.d.ts +15 -0
- package/dist/client/create-client.d.ts.map +1 -1
- package/dist/index.d.ts +15 -6
- package/dist/index.d.ts.map +1 -1
- package/dist/index.mjs +506 -31
- package/dist/services/module.d.ts +1 -1
- package/dist/services/module.d.ts.map +1 -1
- package/dist/services/operation/definitions.d.ts +175 -4
- package/dist/services/operation/definitions.d.ts.map +1 -1
- package/dist/services/operation/endpoints.d.ts +5 -1
- package/dist/services/operation/endpoints.d.ts.map +1 -1
- package/dist/services/operation/index.d.ts +510 -12
- package/dist/services/operation/index.d.ts.map +1 -1
- package/dist/services/operation/module.d.ts +1 -1
- package/dist/services/operation/module.d.ts.map +1 -1
- package/dist/services/operation/operation.service.d.ts +74 -23
- package/dist/services/operation/operation.service.d.ts.map +1 -1
- package/dist/services/operation/types.d.ts +118 -1
- package/dist/services/operation/types.d.ts.map +1 -1
- package/dist/settings/sdk-version.d.ts +1 -1
- package/lib/.tsbuildinfo +1 -1
- package/lib/client/create-client.d.ts +15 -0
- package/lib/client/create-client.d.ts.map +1 -1
- package/lib/client/create-client.js +15 -0
- package/lib/client/create-client.js.map +1 -1
- package/lib/index.d.ts +15 -6
- package/lib/index.d.ts.map +1 -1
- package/lib/services/module.d.ts +1 -1
- package/lib/services/module.d.ts.map +1 -1
- package/lib/services/module.js.map +1 -1
- package/lib/services/operation/definitions.d.ts +175 -4
- package/lib/services/operation/definitions.d.ts.map +1 -1
- package/lib/services/operation/definitions.js.map +1 -1
- package/lib/services/operation/endpoints.d.ts +5 -1
- package/lib/services/operation/endpoints.d.ts.map +1 -1
- package/lib/services/operation/endpoints.js +7 -1
- package/lib/services/operation/endpoints.js.map +1 -1
- package/lib/services/operation/index.d.ts +510 -12
- package/lib/services/operation/index.d.ts.map +1 -1
- package/lib/services/operation/index.js +650 -14
- package/lib/services/operation/index.js.map +1 -1
- package/lib/services/operation/module.d.ts +1 -1
- package/lib/services/operation/module.d.ts.map +1 -1
- package/lib/services/operation/module.js.map +1 -1
- package/lib/services/operation/operation.service.d.ts +74 -23
- package/lib/services/operation/operation.service.d.ts.map +1 -1
- package/lib/services/operation/operation.service.js +213 -25
- package/lib/services/operation/operation.service.js.map +1 -1
- package/lib/services/operation/types.d.ts +118 -1
- package/lib/services/operation/types.d.ts.map +1 -1
- package/lib/services/operation/types.js +1 -1
- package/lib/settings/sdk-version.d.ts +1 -1
- package/lib/settings/sdk-version.js +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1326,7 +1326,7 @@ import * as Sentry from "@sentry/browser";
|
|
|
1326
1326
|
import "isomorphic-fetch";
|
|
1327
1327
|
|
|
1328
1328
|
// src/settings/sdk-version.ts
|
|
1329
|
-
var SDK_VERSION = "3.2.
|
|
1329
|
+
var SDK_VERSION = "3.2.2";
|
|
1330
1330
|
|
|
1331
1331
|
// src/settings/fetch-instance.ts
|
|
1332
1332
|
var clientConfig = {
|
|
@@ -4408,28 +4408,23 @@ async function precheckPurchaseCardL3({
|
|
|
4408
4408
|
// src/services/operation/index.ts
|
|
4409
4409
|
var operation_exports = {};
|
|
4410
4410
|
__export(operation_exports, {
|
|
4411
|
-
|
|
4412
|
-
|
|
4411
|
+
addOperationAccounts: () => addOperationAccounts,
|
|
4412
|
+
addOperationLines: () => addOperationLines,
|
|
4413
|
+
createOperation: () => createOperation,
|
|
4414
|
+
deleteOperation: () => deleteOperation,
|
|
4413
4415
|
getOperation: () => getOperation,
|
|
4416
|
+
getOperationAccounts: () => getOperationAccounts,
|
|
4414
4417
|
getOperationLines: () => getOperationLines,
|
|
4415
|
-
getOperations: () => getOperations
|
|
4418
|
+
getOperations: () => getOperations,
|
|
4419
|
+
getShopOperation: () => getShopOperation,
|
|
4420
|
+
getShopOperationLines: () => getShopOperationLines,
|
|
4421
|
+
getShopOperations: () => getShopOperations,
|
|
4422
|
+
removeOperationAccounts: () => removeOperationAccounts,
|
|
4423
|
+
removeOperationLines: () => removeOperationLines,
|
|
4424
|
+
updateOperation: () => updateOperation,
|
|
4425
|
+
updateOperationDetails: () => updateOperationDetails
|
|
4416
4426
|
});
|
|
4417
|
-
|
|
4418
|
-
// src/services/operation/definitions.ts
|
|
4419
|
-
var OperationType = /* @__PURE__ */ ((OperationType2) => {
|
|
4420
|
-
OperationType2["PUBLIC"] = "PUBLIC";
|
|
4421
|
-
OperationType2["PRIVATE"] = "PRIVATE";
|
|
4422
|
-
return OperationType2;
|
|
4423
|
-
})(OperationType || {});
|
|
4424
|
-
var OperationStatus = /* @__PURE__ */ ((OperationStatus2) => {
|
|
4425
|
-
OperationStatus2["DRAFT"] = "DRAFT";
|
|
4426
|
-
OperationStatus2["ACTIVE"] = "ACTIVE";
|
|
4427
|
-
OperationStatus2["INACTIVE"] = "INACTIVE";
|
|
4428
|
-
return OperationStatus2;
|
|
4429
|
-
})(OperationStatus || {});
|
|
4430
|
-
|
|
4431
|
-
// src/services/operation/index.ts
|
|
4432
|
-
async function getOperations({
|
|
4427
|
+
async function getShopOperations({
|
|
4433
4428
|
page,
|
|
4434
4429
|
size,
|
|
4435
4430
|
sort,
|
|
@@ -4459,14 +4454,173 @@ async function getOperations({
|
|
|
4459
4454
|
});
|
|
4460
4455
|
return data;
|
|
4461
4456
|
}
|
|
4457
|
+
async function getOperations({
|
|
4458
|
+
page,
|
|
4459
|
+
size,
|
|
4460
|
+
sort,
|
|
4461
|
+
type,
|
|
4462
|
+
status,
|
|
4463
|
+
ids,
|
|
4464
|
+
name: name2,
|
|
4465
|
+
startDateFrom,
|
|
4466
|
+
startDateTo,
|
|
4467
|
+
endDateFrom,
|
|
4468
|
+
endDateTo,
|
|
4469
|
+
ownerIds,
|
|
4470
|
+
idType,
|
|
4471
|
+
locale
|
|
4472
|
+
}) {
|
|
4473
|
+
const { data } = await enhancedFetch({
|
|
4474
|
+
method: "GET",
|
|
4475
|
+
path: `/v1/operations`,
|
|
4476
|
+
params: {
|
|
4477
|
+
page,
|
|
4478
|
+
size,
|
|
4479
|
+
sort,
|
|
4480
|
+
type,
|
|
4481
|
+
status,
|
|
4482
|
+
ids,
|
|
4483
|
+
name: name2,
|
|
4484
|
+
startDateFrom,
|
|
4485
|
+
startDateTo,
|
|
4486
|
+
endDateFrom,
|
|
4487
|
+
endDateTo,
|
|
4488
|
+
ownerIds,
|
|
4489
|
+
idType,
|
|
4490
|
+
locale
|
|
4491
|
+
}
|
|
4492
|
+
});
|
|
4493
|
+
return data;
|
|
4494
|
+
}
|
|
4495
|
+
async function getShopOperation({
|
|
4496
|
+
operationId,
|
|
4497
|
+
locale
|
|
4498
|
+
}) {
|
|
4499
|
+
const { data } = await enhancedFetch({
|
|
4500
|
+
method: "GET",
|
|
4501
|
+
path: `/v1/shop/operations/${operationId}`
|
|
4502
|
+
});
|
|
4503
|
+
return data;
|
|
4504
|
+
}
|
|
4462
4505
|
async function getOperation({
|
|
4506
|
+
operationId
|
|
4507
|
+
}) {
|
|
4508
|
+
const { data } = await enhancedFetch({
|
|
4509
|
+
method: "GET",
|
|
4510
|
+
path: `/v1/operations/${operationId}`
|
|
4511
|
+
});
|
|
4512
|
+
return data;
|
|
4513
|
+
}
|
|
4514
|
+
async function updateOperation({
|
|
4463
4515
|
operationId,
|
|
4516
|
+
status
|
|
4517
|
+
}) {
|
|
4518
|
+
await enhancedFetch({
|
|
4519
|
+
method: "PATCH",
|
|
4520
|
+
path: `/v1/operations/${operationId}`,
|
|
4521
|
+
body: JSON.stringify({
|
|
4522
|
+
status
|
|
4523
|
+
})
|
|
4524
|
+
});
|
|
4525
|
+
}
|
|
4526
|
+
async function updateOperationDetails({
|
|
4527
|
+
operationId,
|
|
4528
|
+
customFieldValues,
|
|
4529
|
+
descriptions,
|
|
4530
|
+
endDate,
|
|
4531
|
+
names,
|
|
4532
|
+
startDate
|
|
4533
|
+
}) {
|
|
4534
|
+
const { data } = await enhancedFetch({
|
|
4535
|
+
method: "PUT",
|
|
4536
|
+
path: `/v1/operations/${operationId}`,
|
|
4537
|
+
body: JSON.stringify({
|
|
4538
|
+
customFieldValues,
|
|
4539
|
+
descriptions,
|
|
4540
|
+
endDate,
|
|
4541
|
+
names,
|
|
4542
|
+
startDate
|
|
4543
|
+
})
|
|
4544
|
+
});
|
|
4545
|
+
return data;
|
|
4546
|
+
}
|
|
4547
|
+
async function removeOperationAccounts({
|
|
4548
|
+
operationId,
|
|
4549
|
+
accountIds
|
|
4550
|
+
}) {
|
|
4551
|
+
await enhancedFetch({
|
|
4552
|
+
method: "DELETE",
|
|
4553
|
+
path: `/v1/operations/${operationId}/accounts`,
|
|
4554
|
+
body: JSON.stringify({
|
|
4555
|
+
accountIds
|
|
4556
|
+
})
|
|
4557
|
+
});
|
|
4558
|
+
}
|
|
4559
|
+
async function getOperationAccounts({
|
|
4560
|
+
operationId,
|
|
4561
|
+
page,
|
|
4562
|
+
size,
|
|
4563
|
+
sort,
|
|
4564
|
+
accountIds,
|
|
4565
|
+
accountName
|
|
4566
|
+
}) {
|
|
4567
|
+
const { data } = await enhancedFetch({
|
|
4568
|
+
method: "GET",
|
|
4569
|
+
path: `/v1/operations/${operationId}/accounts`,
|
|
4570
|
+
params: {
|
|
4571
|
+
page,
|
|
4572
|
+
size,
|
|
4573
|
+
sort,
|
|
4574
|
+
accountIds,
|
|
4575
|
+
accountName
|
|
4576
|
+
}
|
|
4577
|
+
});
|
|
4578
|
+
return data;
|
|
4579
|
+
}
|
|
4580
|
+
async function addOperationAccounts({
|
|
4581
|
+
operationId,
|
|
4582
|
+
accountIds
|
|
4583
|
+
}) {
|
|
4584
|
+
await enhancedFetch({
|
|
4585
|
+
method: "PUT",
|
|
4586
|
+
path: `/v1/operations/${operationId}/accounts`,
|
|
4587
|
+
body: JSON.stringify({
|
|
4588
|
+
accountIds
|
|
4589
|
+
})
|
|
4590
|
+
});
|
|
4591
|
+
}
|
|
4592
|
+
async function removeOperationLines({
|
|
4593
|
+
operationId,
|
|
4594
|
+
variantIds
|
|
4595
|
+
}) {
|
|
4596
|
+
await enhancedFetch({
|
|
4597
|
+
method: "DELETE",
|
|
4598
|
+
path: `/v1/operations/${operationId}/lines`,
|
|
4599
|
+
body: JSON.stringify({
|
|
4600
|
+
variantIds
|
|
4601
|
+
})
|
|
4602
|
+
});
|
|
4603
|
+
}
|
|
4604
|
+
async function getShopOperationLines({
|
|
4605
|
+
operationId,
|
|
4606
|
+
page,
|
|
4607
|
+
size,
|
|
4608
|
+
sort,
|
|
4609
|
+
variantIds,
|
|
4610
|
+
variantName,
|
|
4464
4611
|
locale
|
|
4465
4612
|
}) {
|
|
4466
4613
|
const { data } = await enhancedFetch({
|
|
4467
4614
|
method: "GET",
|
|
4468
|
-
path: `/v1/shop/operations/${operationId}`,
|
|
4469
|
-
params: {
|
|
4615
|
+
path: `/v1/shop/operations/${operationId}/lines`,
|
|
4616
|
+
params: {
|
|
4617
|
+
page,
|
|
4618
|
+
size,
|
|
4619
|
+
sort,
|
|
4620
|
+
variantIds,
|
|
4621
|
+
variantName,
|
|
4622
|
+
locale
|
|
4623
|
+
}
|
|
4470
4624
|
});
|
|
4471
4625
|
return data;
|
|
4472
4626
|
}
|
|
@@ -4477,22 +4631,70 @@ async function getOperationLines({
|
|
|
4477
4631
|
sort,
|
|
4478
4632
|
variantIds,
|
|
4479
4633
|
variantName,
|
|
4634
|
+
minQuantity,
|
|
4635
|
+
maxQuantity,
|
|
4636
|
+
recommendedQuantity,
|
|
4480
4637
|
locale
|
|
4481
4638
|
}) {
|
|
4482
4639
|
const { data } = await enhancedFetch({
|
|
4483
4640
|
method: "GET",
|
|
4484
|
-
path: `/v1/
|
|
4641
|
+
path: `/v1/operations/${operationId}/lines`,
|
|
4485
4642
|
params: {
|
|
4486
4643
|
page,
|
|
4487
4644
|
size,
|
|
4488
4645
|
sort,
|
|
4489
4646
|
variantIds,
|
|
4490
4647
|
variantName,
|
|
4648
|
+
minQuantity,
|
|
4649
|
+
maxQuantity,
|
|
4650
|
+
recommendedQuantity,
|
|
4491
4651
|
locale
|
|
4492
4652
|
}
|
|
4493
4653
|
});
|
|
4494
4654
|
return data;
|
|
4495
4655
|
}
|
|
4656
|
+
async function addOperationLines({
|
|
4657
|
+
operationId,
|
|
4658
|
+
lines
|
|
4659
|
+
}) {
|
|
4660
|
+
await enhancedFetch({
|
|
4661
|
+
method: "PUT",
|
|
4662
|
+
path: `/v1/operations/${operationId}/lines`,
|
|
4663
|
+
body: JSON.stringify(lines)
|
|
4664
|
+
});
|
|
4665
|
+
}
|
|
4666
|
+
async function createOperation({
|
|
4667
|
+
customFieldValues,
|
|
4668
|
+
descriptions,
|
|
4669
|
+
endDate,
|
|
4670
|
+
externalId,
|
|
4671
|
+
names,
|
|
4672
|
+
startDate,
|
|
4673
|
+
type
|
|
4674
|
+
}) {
|
|
4675
|
+
const { data } = await enhancedFetch({
|
|
4676
|
+
method: "POST",
|
|
4677
|
+
path: `/v1/operations`,
|
|
4678
|
+
body: JSON.stringify({
|
|
4679
|
+
customFieldValues,
|
|
4680
|
+
descriptions,
|
|
4681
|
+
endDate,
|
|
4682
|
+
externalId,
|
|
4683
|
+
names,
|
|
4684
|
+
startDate,
|
|
4685
|
+
type
|
|
4686
|
+
})
|
|
4687
|
+
});
|
|
4688
|
+
return data;
|
|
4689
|
+
}
|
|
4690
|
+
async function deleteOperation({
|
|
4691
|
+
operationId
|
|
4692
|
+
}) {
|
|
4693
|
+
await enhancedFetch({
|
|
4694
|
+
method: "DELETE",
|
|
4695
|
+
path: `/v1/operations/${operationId}`
|
|
4696
|
+
});
|
|
4697
|
+
}
|
|
4496
4698
|
|
|
4497
4699
|
// src/client/transport.ts
|
|
4498
4700
|
init_base();
|
|
@@ -10489,9 +10691,15 @@ var NavigationCategoryService = class extends BaseService {
|
|
|
10489
10691
|
|
|
10490
10692
|
// src/services/operation/endpoints.ts
|
|
10491
10693
|
var OperationEndpoints = {
|
|
10694
|
+
// Shop operations
|
|
10492
10695
|
SHOP_OPERATIONS: "/v1/shop/operations",
|
|
10493
10696
|
SHOP_OPERATION: "/v1/shop/operations/{operationId}",
|
|
10494
|
-
SHOP_OPERATION_LINES: "/v1/shop/operations/{operationId}/lines"
|
|
10697
|
+
SHOP_OPERATION_LINES: "/v1/shop/operations/{operationId}/lines",
|
|
10698
|
+
// Operations (admin)
|
|
10699
|
+
OPERATIONS: "/v1/operations",
|
|
10700
|
+
OPERATION: "/v1/operations/{operationId}",
|
|
10701
|
+
OPERATION_ACCOUNTS: "/v1/operations/{operationId}/accounts",
|
|
10702
|
+
OPERATION_LINES: "/v1/operations/{operationId}/lines"
|
|
10495
10703
|
};
|
|
10496
10704
|
|
|
10497
10705
|
// src/services/operation/operation.service.ts
|
|
@@ -10502,10 +10710,9 @@ var OperationService = class extends BaseService {
|
|
|
10502
10710
|
}
|
|
10503
10711
|
/**
|
|
10504
10712
|
* List ACTIVE operations visible to the caller on the effective store.
|
|
10505
|
-
*
|
|
10506
10713
|
* **Endpoint**: `GET /v1/shop/operations [OPERATION-550]`
|
|
10507
10714
|
*/
|
|
10508
|
-
async
|
|
10715
|
+
async getShopOperations(params = {}, context) {
|
|
10509
10716
|
return this.request(
|
|
10510
10717
|
{
|
|
10511
10718
|
method: "GET",
|
|
@@ -10516,11 +10723,24 @@ var OperationService = class extends BaseService {
|
|
|
10516
10723
|
);
|
|
10517
10724
|
}
|
|
10518
10725
|
/**
|
|
10519
|
-
*
|
|
10520
|
-
*
|
|
10726
|
+
* List operations with filters on type, status, dates, and owner.
|
|
10727
|
+
* **Endpoint**: `GET /v1/operations [ADM-OPERATION-550]`
|
|
10728
|
+
*/
|
|
10729
|
+
async getOperations(params = {}, context) {
|
|
10730
|
+
return this.request(
|
|
10731
|
+
{
|
|
10732
|
+
method: "GET",
|
|
10733
|
+
path: OperationEndpoints.OPERATIONS,
|
|
10734
|
+
params: this.buildParams(params)
|
|
10735
|
+
},
|
|
10736
|
+
context
|
|
10737
|
+
);
|
|
10738
|
+
}
|
|
10739
|
+
/**
|
|
10740
|
+
* Get a single shop operation (metadata only).
|
|
10521
10741
|
* **Endpoint**: `GET /v1/shop/operations/{operationId} [OPERATION-500]`
|
|
10522
10742
|
*/
|
|
10523
|
-
async
|
|
10743
|
+
async getShopOperation(params, context) {
|
|
10524
10744
|
this.required(params, ["operationId"]);
|
|
10525
10745
|
return this.request(
|
|
10526
10746
|
{
|
|
@@ -10534,11 +10754,165 @@ var OperationService = class extends BaseService {
|
|
|
10534
10754
|
);
|
|
10535
10755
|
}
|
|
10536
10756
|
/**
|
|
10537
|
-
*
|
|
10757
|
+
* Get a single operation by ID (full metadata).
|
|
10758
|
+
* **Endpoint**: `GET /v1/operations/{operationId} [ADM-OPERATION-500]`
|
|
10759
|
+
*/
|
|
10760
|
+
async getOperation(params, context) {
|
|
10761
|
+
this.required(params, ["operationId"]);
|
|
10762
|
+
return this.request(
|
|
10763
|
+
{
|
|
10764
|
+
method: "GET",
|
|
10765
|
+
path: this.buildPath(OperationEndpoints.OPERATION, {
|
|
10766
|
+
operationId: params.operationId
|
|
10767
|
+
})
|
|
10768
|
+
},
|
|
10769
|
+
context
|
|
10770
|
+
);
|
|
10771
|
+
}
|
|
10772
|
+
/**
|
|
10773
|
+
* Create a new operation (DRAFT status).
|
|
10774
|
+
* **Endpoint**: `POST /v1/operations [ADM-OPERATION-100]`
|
|
10538
10775
|
*
|
|
10776
|
+
* Required: `names`, `externalId`, `type`, `startDate`. `endDate` is optional;
|
|
10777
|
+
* when provided, `startDate` must be less than or equal to `endDate`.
|
|
10778
|
+
*/
|
|
10779
|
+
async createOperation(params, context) {
|
|
10780
|
+
this.required(params, ["externalId", "names", "startDate", "type"]);
|
|
10781
|
+
return this.request(
|
|
10782
|
+
{
|
|
10783
|
+
method: "POST",
|
|
10784
|
+
path: OperationEndpoints.OPERATIONS,
|
|
10785
|
+
body: {
|
|
10786
|
+
customFieldValues: params.customFieldValues,
|
|
10787
|
+
descriptions: params.descriptions,
|
|
10788
|
+
endDate: params.endDate,
|
|
10789
|
+
externalId: params.externalId,
|
|
10790
|
+
names: params.names,
|
|
10791
|
+
startDate: params.startDate,
|
|
10792
|
+
type: params.type
|
|
10793
|
+
}
|
|
10794
|
+
},
|
|
10795
|
+
context
|
|
10796
|
+
);
|
|
10797
|
+
}
|
|
10798
|
+
/**
|
|
10799
|
+
* Change operation status (activate or deactivate).
|
|
10800
|
+
* **Endpoint**: `PATCH /v1/operations/{operationId} [ADM-OPERATION-201]`
|
|
10801
|
+
*/
|
|
10802
|
+
async updateOperation(params, context) {
|
|
10803
|
+
this.required(params, ["operationId", "status"]);
|
|
10804
|
+
await this.request(
|
|
10805
|
+
{
|
|
10806
|
+
method: "PATCH",
|
|
10807
|
+
path: this.buildPath(OperationEndpoints.OPERATION, {
|
|
10808
|
+
operationId: params.operationId
|
|
10809
|
+
}),
|
|
10810
|
+
body: { status: params.status }
|
|
10811
|
+
},
|
|
10812
|
+
context
|
|
10813
|
+
);
|
|
10814
|
+
}
|
|
10815
|
+
/**
|
|
10816
|
+
* Update operation metadata (names, dates, custom fields).
|
|
10817
|
+
* **Endpoint**: `PUT /v1/operations/{operationId} [ADM-OPERATION-200]`
|
|
10818
|
+
*/
|
|
10819
|
+
async updateOperationDetails(params, context) {
|
|
10820
|
+
this.required(params, ["operationId"]);
|
|
10821
|
+
return this.request(
|
|
10822
|
+
{
|
|
10823
|
+
method: "PUT",
|
|
10824
|
+
path: this.buildPath(OperationEndpoints.OPERATION, {
|
|
10825
|
+
operationId: params.operationId
|
|
10826
|
+
}),
|
|
10827
|
+
body: {
|
|
10828
|
+
customFieldValues: params.customFieldValues,
|
|
10829
|
+
descriptions: params.descriptions,
|
|
10830
|
+
endDate: params.endDate,
|
|
10831
|
+
names: params.names,
|
|
10832
|
+
startDate: params.startDate
|
|
10833
|
+
}
|
|
10834
|
+
},
|
|
10835
|
+
context
|
|
10836
|
+
);
|
|
10837
|
+
}
|
|
10838
|
+
/**
|
|
10839
|
+
* Delete an operation (must not be linked to carts or orders).
|
|
10840
|
+
* **Endpoint**: `DELETE /v1/operations/{operationId} [ADM-OPERATION-300]`
|
|
10841
|
+
*/
|
|
10842
|
+
async deleteOperation(params, context) {
|
|
10843
|
+
this.required(params, ["operationId"]);
|
|
10844
|
+
await this.request(
|
|
10845
|
+
{
|
|
10846
|
+
method: "DELETE",
|
|
10847
|
+
path: this.buildPath(OperationEndpoints.OPERATION, {
|
|
10848
|
+
operationId: params.operationId
|
|
10849
|
+
})
|
|
10850
|
+
},
|
|
10851
|
+
context
|
|
10852
|
+
);
|
|
10853
|
+
}
|
|
10854
|
+
/**
|
|
10855
|
+
* List accounts linked to a PRIVATE operation.
|
|
10856
|
+
* **Endpoint**: `GET /v1/operations/{operationId}/accounts [ADM-OPERATION-552]`
|
|
10857
|
+
*/
|
|
10858
|
+
async getOperationAccounts(params, context) {
|
|
10859
|
+
this.required(params, ["operationId"]);
|
|
10860
|
+
return this.request(
|
|
10861
|
+
{
|
|
10862
|
+
method: "GET",
|
|
10863
|
+
path: this.buildPath(OperationEndpoints.OPERATION_ACCOUNTS, {
|
|
10864
|
+
operationId: params.operationId
|
|
10865
|
+
}),
|
|
10866
|
+
params: this.buildParams({
|
|
10867
|
+
page: params.page,
|
|
10868
|
+
size: params.size,
|
|
10869
|
+
sort: params.sort,
|
|
10870
|
+
accountIds: params.accountIds,
|
|
10871
|
+
accountName: params.accountName
|
|
10872
|
+
})
|
|
10873
|
+
},
|
|
10874
|
+
context
|
|
10875
|
+
);
|
|
10876
|
+
}
|
|
10877
|
+
/**
|
|
10878
|
+
* Add accounts to a PRIVATE operation.
|
|
10879
|
+
* **Endpoint**: `PUT /v1/operations/{operationId}/accounts [ADM-OPERATION-251]`
|
|
10880
|
+
*/
|
|
10881
|
+
async addOperationAccounts(params, context) {
|
|
10882
|
+
this.required(params, ["operationId", "accountIds"]);
|
|
10883
|
+
await this.request(
|
|
10884
|
+
{
|
|
10885
|
+
method: "PUT",
|
|
10886
|
+
path: this.buildPath(OperationEndpoints.OPERATION_ACCOUNTS, {
|
|
10887
|
+
operationId: params.operationId
|
|
10888
|
+
}),
|
|
10889
|
+
body: { accountIds: params.accountIds }
|
|
10890
|
+
},
|
|
10891
|
+
context
|
|
10892
|
+
);
|
|
10893
|
+
}
|
|
10894
|
+
/**
|
|
10895
|
+
* Remove accounts from a PRIVATE operation.
|
|
10896
|
+
* **Endpoint**: `DELETE /v1/operations/{operationId}/accounts [ADM-OPERATION-351]`
|
|
10897
|
+
*/
|
|
10898
|
+
async removeOperationAccounts(params, context) {
|
|
10899
|
+
this.required(params, ["operationId", "accountIds"]);
|
|
10900
|
+
await this.request(
|
|
10901
|
+
{
|
|
10902
|
+
method: "DELETE",
|
|
10903
|
+
path: this.buildPath(OperationEndpoints.OPERATION_ACCOUNTS, {
|
|
10904
|
+
operationId: params.operationId
|
|
10905
|
+
}),
|
|
10906
|
+
body: { accountIds: params.accountIds }
|
|
10907
|
+
},
|
|
10908
|
+
context
|
|
10909
|
+
);
|
|
10910
|
+
}
|
|
10911
|
+
/**
|
|
10912
|
+
* List product variant lines for a shop operation.
|
|
10539
10913
|
* **Endpoint**: `GET /v1/shop/operations/{operationId}/lines [OPERATION-551]`
|
|
10540
10914
|
*/
|
|
10541
|
-
async
|
|
10915
|
+
async getShopOperationLines(params, context) {
|
|
10542
10916
|
this.required(params, ["operationId"]);
|
|
10543
10917
|
return this.request(
|
|
10544
10918
|
{
|
|
@@ -10558,6 +10932,79 @@ var OperationService = class extends BaseService {
|
|
|
10558
10932
|
context
|
|
10559
10933
|
);
|
|
10560
10934
|
}
|
|
10935
|
+
/**
|
|
10936
|
+
* List product variant lines for an operation.
|
|
10937
|
+
* **Endpoint**: `GET /v1/operations/{operationId}/lines [ADM-OPERATION-551]`
|
|
10938
|
+
*/
|
|
10939
|
+
async getOperationLines(params, context) {
|
|
10940
|
+
this.required(params, ["operationId"]);
|
|
10941
|
+
return this.request(
|
|
10942
|
+
{
|
|
10943
|
+
method: "GET",
|
|
10944
|
+
path: this.buildPath(OperationEndpoints.OPERATION_LINES, {
|
|
10945
|
+
operationId: params.operationId
|
|
10946
|
+
}),
|
|
10947
|
+
params: this.buildParams({
|
|
10948
|
+
page: params.page,
|
|
10949
|
+
size: params.size,
|
|
10950
|
+
sort: params.sort,
|
|
10951
|
+
variantIds: params.variantIds,
|
|
10952
|
+
variantName: params.variantName,
|
|
10953
|
+
minQuantity: params.minQuantity,
|
|
10954
|
+
maxQuantity: params.maxQuantity,
|
|
10955
|
+
recommendedQuantity: params.recommendedQuantity,
|
|
10956
|
+
locale: params.locale
|
|
10957
|
+
})
|
|
10958
|
+
},
|
|
10959
|
+
context
|
|
10960
|
+
);
|
|
10961
|
+
}
|
|
10962
|
+
/**
|
|
10963
|
+
* Add or update variant lines on an operation.
|
|
10964
|
+
* **Endpoint**: `PUT /v1/operations/{operationId}/lines [ADM-OPERATION-250]`
|
|
10965
|
+
*/
|
|
10966
|
+
async addOperationLines(params, context) {
|
|
10967
|
+
this.required(params, ["operationId", "lines"]);
|
|
10968
|
+
await this.request(
|
|
10969
|
+
{
|
|
10970
|
+
method: "PUT",
|
|
10971
|
+
path: this.buildPath(OperationEndpoints.OPERATION_LINES, {
|
|
10972
|
+
operationId: params.operationId
|
|
10973
|
+
}),
|
|
10974
|
+
body: params.lines
|
|
10975
|
+
},
|
|
10976
|
+
context
|
|
10977
|
+
);
|
|
10978
|
+
}
|
|
10979
|
+
/**
|
|
10980
|
+
* Remove variant lines from an operation.
|
|
10981
|
+
* **Endpoint**: `DELETE /v1/operations/{operationId}/lines [ADM-OPERATION-350]`
|
|
10982
|
+
*/
|
|
10983
|
+
async removeOperationLines(params, context) {
|
|
10984
|
+
this.required(params, ["operationId", "variantIds"]);
|
|
10985
|
+
await this.request(
|
|
10986
|
+
{
|
|
10987
|
+
method: "DELETE",
|
|
10988
|
+
path: this.buildPath(OperationEndpoints.OPERATION_LINES, {
|
|
10989
|
+
operationId: params.operationId
|
|
10990
|
+
}),
|
|
10991
|
+
body: { variantIds: params.variantIds }
|
|
10992
|
+
},
|
|
10993
|
+
context
|
|
10994
|
+
);
|
|
10995
|
+
}
|
|
10996
|
+
/** @deprecated Alias for {@link getOperations}. */
|
|
10997
|
+
async getAdminOperations(params = {}, context) {
|
|
10998
|
+
return this.getOperations(params, context);
|
|
10999
|
+
}
|
|
11000
|
+
/** @deprecated Alias for {@link getOperation}. */
|
|
11001
|
+
async getAdminOperation(params, context) {
|
|
11002
|
+
return this.getOperation(params, context);
|
|
11003
|
+
}
|
|
11004
|
+
/** @deprecated Alias for {@link getOperationLines}. */
|
|
11005
|
+
async getAdminOperationLines(params, context) {
|
|
11006
|
+
return this.getOperationLines(params, context);
|
|
11007
|
+
}
|
|
10561
11008
|
};
|
|
10562
11009
|
|
|
10563
11010
|
// src/services/attributes/endpoints.ts
|
|
@@ -11205,9 +11652,24 @@ function createDjustClient(config) {
|
|
|
11205
11652
|
deleteStoredPaymentMethod: (p) => services.payment.deleteStoredPaymentMethod(p, ctx),
|
|
11206
11653
|
precheckPurchaseCardL3: (p) => services.payment.precheckPurchaseCardL3(p, ctx),
|
|
11207
11654
|
// ==================== OPERATIONS ====================
|
|
11655
|
+
getShopOperations: (p) => services.operation.getShopOperations(p, ctx),
|
|
11208
11656
|
getOperations: (p) => services.operation.getOperations(p, ctx),
|
|
11657
|
+
getShopOperation: (p) => services.operation.getShopOperation(p, ctx),
|
|
11209
11658
|
getOperation: (p) => services.operation.getOperation(p, ctx),
|
|
11659
|
+
getShopOperationLines: (p) => services.operation.getShopOperationLines(p, ctx),
|
|
11210
11660
|
getOperationLines: (p) => services.operation.getOperationLines(p, ctx),
|
|
11661
|
+
getAdminOperations: (p) => services.operation.getAdminOperations(p, ctx),
|
|
11662
|
+
getAdminOperation: (p) => services.operation.getAdminOperation(p, ctx),
|
|
11663
|
+
getAdminOperationLines: (p) => services.operation.getAdminOperationLines(p, ctx),
|
|
11664
|
+
createOperation: (p) => services.operation.createOperation(p, ctx),
|
|
11665
|
+
updateOperation: (p) => services.operation.updateOperation(p, ctx),
|
|
11666
|
+
updateOperationDetails: (p) => services.operation.updateOperationDetails(p, ctx),
|
|
11667
|
+
deleteOperation: (p) => services.operation.deleteOperation(p, ctx),
|
|
11668
|
+
getOperationAccounts: (p) => services.operation.getOperationAccounts(p, ctx),
|
|
11669
|
+
addOperationAccounts: (p) => services.operation.addOperationAccounts(p, ctx),
|
|
11670
|
+
removeOperationAccounts: (p) => services.operation.removeOperationAccounts(p, ctx),
|
|
11671
|
+
addOperationLines: (p) => services.operation.addOperationLines(p, ctx),
|
|
11672
|
+
removeOperationLines: (p) => services.operation.removeOperationLines(p, ctx),
|
|
11211
11673
|
// ==================== INCIDENTS ====================
|
|
11212
11674
|
getIncidents: (p) => services.incident.getIncidents(p, ctx),
|
|
11213
11675
|
getIncident: (p) => services.incident.getIncident(p, ctx),
|
|
@@ -11491,6 +11953,19 @@ function mergeTransportHooks(...hookSets) {
|
|
|
11491
11953
|
return merged;
|
|
11492
11954
|
}
|
|
11493
11955
|
|
|
11956
|
+
// src/services/operation/definitions.ts
|
|
11957
|
+
var OperationType = /* @__PURE__ */ ((OperationType2) => {
|
|
11958
|
+
OperationType2["PUBLIC"] = "PUBLIC";
|
|
11959
|
+
OperationType2["PRIVATE"] = "PRIVATE";
|
|
11960
|
+
return OperationType2;
|
|
11961
|
+
})(OperationType || {});
|
|
11962
|
+
var OperationStatus = /* @__PURE__ */ ((OperationStatus2) => {
|
|
11963
|
+
OperationStatus2["DRAFT"] = "DRAFT";
|
|
11964
|
+
OperationStatus2["ACTIVE"] = "ACTIVE";
|
|
11965
|
+
OperationStatus2["INACTIVE"] = "INACTIVE";
|
|
11966
|
+
return OperationStatus2;
|
|
11967
|
+
})(OperationStatus || {});
|
|
11968
|
+
|
|
11494
11969
|
// src/services/product/definitions.ts
|
|
11495
11970
|
var AggregationType = /* @__PURE__ */ ((AggregationType2) => {
|
|
11496
11971
|
AggregationType2["PRODUCT"] = "PRODUCT";
|
|
@@ -48,7 +48,7 @@ export type { BrowserInfo, PaymentMethodData, InitPaymentParams, GetPaymentDetai
|
|
|
48
48
|
export { NavigationCategoryService, NavigationCategoryEndpoints, type NavigationCategoryEndpoint, } from "./navigation-category/module";
|
|
49
49
|
export type { IdType as NavigationCategoryIdType, GetNavigationCategoriesParams, GetNavigationCategoryParams, GetNavigationCategoryBreadcrumbsParams, GetNavigationCategoryByOptionsParams, NavigationCategory, NavigationCategoryBreadcrumb, GetNavigationCategoriesResponse, GetNavigationCategoryResponse, GetNavigationCategoryBreadcrumbsResponse, } from "./navigation-category/module";
|
|
50
50
|
export { OperationService, OperationEndpoints, type OperationEndpoint, } from "./operation/module";
|
|
51
|
-
export type { OperationType, OperationStatus, CustomFieldValueRequest as OperationCustomFieldValueRequest, GetOperationsParams, GetOperationParams, GetOperationLinesParams, Operation, OperationLine, GetOperationsResponse, GetOperationResponse, GetOperationLinesResponse, } from "./operation/module";
|
|
51
|
+
export type { OperationType, OperationStatus, IdType as OperationIdType, CustomFieldValueRequest as OperationCustomFieldValueRequest, OperationLineRequest, GetShopOperationsParams, GetShopOperationParams, GetShopOperationLinesParams, GetOperationsParams, GetOperationParams, GetOperationLinesParams, GetAdminOperationsParams, GetAdminOperationParams, CreateOperationParams, UpdateOperationParams, UpdateOperationDetailsParams, DeleteOperationParams, GetOperationAccountsParams, AddOperationAccountsParams, RemoveOperationAccountsParams, GetAdminOperationLinesParams, AddOperationLinesParams, RemoveOperationLinesParams, Operation, OperationAccount, OperationLine, GetShopOperationsResponse, GetShopOperationResponse, GetShopOperationLinesResponse, GetOperationsResponse, GetOperationResponse, GetOperationLinesResponse, GetAdminOperationsResponse, GetAdminOperationResponse, CreateOperationResponse, UpdateOperationDetailsResponse, GetOperationAccountsResponse, GetAdminOperationLinesResponse, } from "./operation/module";
|
|
52
52
|
export { AttributesService, AttributesEndpoints, type AttributesEndpoint, } from "./attributes/module";
|
|
53
53
|
export type { GetAttributesParams, Attribute, AttributeValue, GetAttributesResponse, } from "./attributes/module";
|
|
54
54
|
export { IncidentService, IncidentEndpoints, type IncidentEndpoint, } from "./incident/module";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../src/services/module.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AAMH,YAAY,EACV,QAAQ,EACR,iBAAiB,EACjB,aAAa,EACb,eAAe,EACf,cAAc,EACd,cAAc,GACf,MAAM,SAAS,CAAC;AAMjB,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAM7C,OAAO,EAAE,cAAc,EAAE,aAAa,EAAE,KAAK,WAAW,EAAE,MAAM,WAAW,CAAC;AAM5E,OAAO,EAAE,WAAW,EAAE,aAAa,EAAE,KAAK,YAAY,EAAE,MAAM,eAAe,CAAC;AAE9E,YAAY,EACV,kBAAkB,EAClB,kBAAkB,EAClB,mBAAmB,EACnB,4BAA4B,EAC5B,WAAW,EACX,cAAc,EACd,oBAAoB,EACpB,aAAa,EACb,gBAAgB,EAChB,WAAW,EACX,WAAW,EACX,gBAAgB,EAChB,KAAK,GACN,MAAM,eAAe,CAAC;AAMvB,OAAO,EAAE,WAAW,EAAE,aAAa,EAAE,KAAK,YAAY,EAAE,MAAM,eAAe,CAAC;AAE9E,YAAY,EACV,UAAU,EACV,QAAQ,EACR,YAAY,EACZ,cAAc,EACd,gBAAgB,EAChB,gBAAgB,EAChB,aAAa,EACb,gBAAgB,EAChB,sBAAsB,EACtB,kBAAkB,EAClB,aAAa,EACb,sBAAsB,EACtB,qBAAqB,EACrB,8BAA8B,EAC9B,aAAa,EACb,qBAAqB,EACrB,QAAQ,EACR,WAAW,EACX,IAAI,EACJ,gBAAgB,EAChB,kBAAkB,EAClB,eAAe,EACf,mBAAmB,EACnB,oBAAoB,EACpB,uBAAuB,EACvB,gCAAgC,EAChC,uBAAuB,GACxB,MAAM,eAAe,CAAC;AAMvB,OAAO,EACL,cAAc,EACd,gBAAgB,EAChB,KAAK,eAAe,GACrB,MAAM,kBAAkB,CAAC;AAE1B,YAAY,EACV,wBAAwB,EACxB,qBAAqB,EACrB,gBAAgB,EAChB,6BAA6B,EAC7B,gCAAgC,EAChC,sBAAsB,EACtB,+BAA+B,EAC/B,wBAAwB,EACxB,uBAAuB,EACvB,2BAA2B,EAC3B,iCAAiC,EACjC,yBAAyB,EACzB,yBAAyB,EACzB,YAAY,EACZ,gBAAgB,EAChB,YAAY,EACZ,cAAc,EACd,cAAc,EACd,OAAO,EACP,QAAQ,EACR,aAAa,EACb,gBAAgB,EAChB,iBAAiB,EACjB,sBAAsB,EACtB,uBAAuB,EACvB,+BAA+B,EAC/B,kCAAkC,EAClC,wBAAwB,EACxB,iCAAiC,EACjC,0BAA0B,EAC1B,yBAAyB,EACzB,6BAA6B,EAC7B,mCAAmC,EACnC,2BAA2B,EAC3B,2BAA2B,GAC5B,MAAM,kBAAkB,CAAC;AAM1B,OAAO,EACL,YAAY,EACZ,cAAc,EACd,KAAK,aAAa,GACnB,MAAM,gBAAgB,CAAC;AAExB,YAAY,EACV,WAAW,EACX,qBAAqB,EACrB,uBAAuB,EACvB,oBAAoB,EACpB,uBAAuB,EACvB,0BAA0B,EAC1B,sBAAsB,EACtB,yBAAyB,EACzB,0BAA0B,EAC1B,uBAAuB,EACvB,yBAAyB,EACzB,sBAAsB,EACtB,4BAA4B,EAC5B,wBAAwB,GACzB,MAAM,gBAAgB,CAAC;AAMxB,OAAO,EACL,sBAAsB,EACtB,wBAAwB,EACxB,KAAK,uBAAuB,GAC7B,MAAM,2BAA2B,CAAC;AAEnC,YAAY,EACV,WAAW,EACX,yBAAyB,EACzB,2BAA2B,EAC3B,6BAA6B,EAC7B,wBAAwB,EACxB,2BAA2B,EAC3B,6BAA6B,EAC7B,2BAA2B,EAC3B,2BAA2B,EAC3B,6BAA6B,EAC7B,0BAA0B,EAC1B,+BAA+B,GAChC,MAAM,2BAA2B,CAAC;AAMnC,OAAO,EACL,oBAAoB,EACpB,sBAAsB,EACtB,KAAK,qBAAqB,GAC3B,MAAM,yBAAyB,CAAC;AAEjC,YAAY,EACV,uBAAuB,EACvB,uBAAuB,EACvB,gCAAgC,EAChC,sBAAsB,EACtB,0BAA0B,EAC1B,yBAAyB,EACzB,2BAA2B,EAC3B,6BAA6B,EAC7B,4BAA4B,EAC5B,4BAA4B,EAC5B,yBAAyB,EACzB,kCAAkC,EAClC,wBAAwB,EACxB,6BAA6B,EAC7B,+BAA+B,EAC/B,8BAA8B,GAC/B,MAAM,yBAAyB,CAAC;AAMjC,OAAO,EACL,sBAAsB,EACtB,wBAAwB,EACxB,KAAK,uBAAuB,GAC7B,MAAM,2BAA2B,CAAC;AAEnC,YAAY,EACV,QAAQ,IAAI,uBAAuB,EACnC,2BAA2B,EAC3B,wBAAwB,EACxB,2BAA2B,EAC3B,iCAAiC,EACjC,kCAAkC,EAClC,kCAAkC,EAClC,kCAAkC,EAClC,8BAA8B,EAC9B,6BAA6B,EAC7B,wBAAwB,EACxB,0BAA0B,EAC1B,0BAA0B,EAC1B,mCAAmC,EACnC,oCAAoC,EACpC,gCAAgC,EAChC,+BAA+B,EAC/B,0BAA0B,EAC1B,4BAA4B,GAC7B,MAAM,2BAA2B,CAAC;AAMnC,OAAO,EACL,mBAAmB,EACnB,qBAAqB,EACrB,KAAK,oBAAoB,GAC1B,MAAM,wBAAwB,CAAC;AAEhC,YAAY,EACV,QAAQ,IAAI,oBAAoB,EAChC,UAAU,EACV,wBAAwB,EACxB,wBAAwB,EACxB,0BAA0B,EAC1B,8BAA8B,EAC9B,2BAA2B,EAC3B,gCAAgC,EAChC,4BAA4B,EAC5B,uBAAuB,EACvB,iBAAiB,EACjB,WAAW,EACX,gBAAgB,EAChB,4BAA4B,EAC5B,0BAA0B,EAC1B,0BAA0B,EAC1B,gCAAgC,EAChC,oCAAoC,GACrC,MAAM,wBAAwB,CAAC;AAMhC,OAAO,EACL,eAAe,EACf,iBAAiB,EACjB,KAAK,gBAAgB,GACtB,MAAM,mBAAmB,CAAC;AAE3B,YAAY,EACV,cAAc,EACd,kBAAkB,EAClB,iBAAiB,EACjB,4BAA4B,EAC5B,QAAQ,IAAI,eAAe,EAC3B,kBAAkB,EAClB,oBAAoB,EACpB,mBAAmB,EACnB,8BAA8B,GAC/B,MAAM,mBAAmB,CAAC;AAM3B,OAAO,EACL,cAAc,EACd,gBAAgB,EAChB,KAAK,eAAe,GACrB,MAAM,kBAAkB,CAAC;AAE1B,YAAY,EACV,WAAW,EACX,iBAAiB,EACjB,iBAAiB,EACjB,uBAAuB,EACvB,uBAAuB,EACvB,+BAA+B,EAC/B,4BAA4B,EAC5B,aAAa,EACb,mBAAmB,EACnB,yBAAyB,EACzB,aAAa,EACb,mBAAmB,EACnB,yBAAyB,EACzB,8BAA8B,GAC/B,MAAM,kBAAkB,CAAC;AAM1B,OAAO,EACL,yBAAyB,EACzB,2BAA2B,EAC3B,KAAK,0BAA0B,GAChC,MAAM,8BAA8B,CAAC;AAEtC,YAAY,EACV,MAAM,IAAI,wBAAwB,EAClC,6BAA6B,EAC7B,2BAA2B,EAC3B,sCAAsC,EACtC,oCAAoC,EACpC,kBAAkB,EAClB,4BAA4B,EAC5B,+BAA+B,EAC/B,6BAA6B,EAC7B,wCAAwC,GACzC,MAAM,8BAA8B,CAAC;AAMtC,OAAO,EACL,gBAAgB,EAChB,kBAAkB,EAClB,KAAK,iBAAiB,GACvB,MAAM,oBAAoB,CAAC;AAE5B,YAAY,EACV,aAAa,EACb,eAAe,EACf,uBAAuB,IAAI,gCAAgC,EAC3D,mBAAmB,EACnB,kBAAkB,EAClB,uBAAuB,EACvB,SAAS,EACT,aAAa,EACb,qBAAqB,EACrB,oBAAoB,EACpB,yBAAyB,
|
|
1
|
+
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../src/services/module.ts"],"names":[],"mappings":"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"}
|