@djust-b2b/djust-front-sdk 3.2.0 → 3.2.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/.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 +509 -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 +71 -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 +71 -23
- package/lib/services/operation/operation.service.d.ts.map +1 -1
- package/lib/services/operation/operation.service.js +216 -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.1";
|
|
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
|
{
|
|
@@ -10533,12 +10753,169 @@ var OperationService = class extends BaseService {
|
|
|
10533
10753
|
context
|
|
10534
10754
|
);
|
|
10535
10755
|
}
|
|
10756
|
+
/**
|
|
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]`
|
|
10775
|
+
*/
|
|
10776
|
+
async createOperation(params, context) {
|
|
10777
|
+
this.required(params, [
|
|
10778
|
+
"externalId",
|
|
10779
|
+
"names",
|
|
10780
|
+
"startDate",
|
|
10781
|
+
"endDate",
|
|
10782
|
+
"type"
|
|
10783
|
+
]);
|
|
10784
|
+
return this.request(
|
|
10785
|
+
{
|
|
10786
|
+
method: "POST",
|
|
10787
|
+
path: OperationEndpoints.OPERATIONS,
|
|
10788
|
+
body: {
|
|
10789
|
+
customFieldValues: params.customFieldValues,
|
|
10790
|
+
descriptions: params.descriptions,
|
|
10791
|
+
endDate: params.endDate,
|
|
10792
|
+
externalId: params.externalId,
|
|
10793
|
+
names: params.names,
|
|
10794
|
+
startDate: params.startDate,
|
|
10795
|
+
type: params.type
|
|
10796
|
+
}
|
|
10797
|
+
},
|
|
10798
|
+
context
|
|
10799
|
+
);
|
|
10800
|
+
}
|
|
10801
|
+
/**
|
|
10802
|
+
* Change operation status (activate or deactivate).
|
|
10803
|
+
* **Endpoint**: `PATCH /v1/operations/{operationId} [ADM-OPERATION-201]`
|
|
10804
|
+
*/
|
|
10805
|
+
async updateOperation(params, context) {
|
|
10806
|
+
this.required(params, ["operationId", "status"]);
|
|
10807
|
+
await this.request(
|
|
10808
|
+
{
|
|
10809
|
+
method: "PATCH",
|
|
10810
|
+
path: this.buildPath(OperationEndpoints.OPERATION, {
|
|
10811
|
+
operationId: params.operationId
|
|
10812
|
+
}),
|
|
10813
|
+
body: { status: params.status }
|
|
10814
|
+
},
|
|
10815
|
+
context
|
|
10816
|
+
);
|
|
10817
|
+
}
|
|
10818
|
+
/**
|
|
10819
|
+
* Update operation metadata (names, dates, custom fields).
|
|
10820
|
+
* **Endpoint**: `PUT /v1/operations/{operationId} [ADM-OPERATION-200]`
|
|
10821
|
+
*/
|
|
10822
|
+
async updateOperationDetails(params, context) {
|
|
10823
|
+
this.required(params, ["operationId"]);
|
|
10824
|
+
return this.request(
|
|
10825
|
+
{
|
|
10826
|
+
method: "PUT",
|
|
10827
|
+
path: this.buildPath(OperationEndpoints.OPERATION, {
|
|
10828
|
+
operationId: params.operationId
|
|
10829
|
+
}),
|
|
10830
|
+
body: {
|
|
10831
|
+
customFieldValues: params.customFieldValues,
|
|
10832
|
+
descriptions: params.descriptions,
|
|
10833
|
+
endDate: params.endDate,
|
|
10834
|
+
names: params.names,
|
|
10835
|
+
startDate: params.startDate
|
|
10836
|
+
}
|
|
10837
|
+
},
|
|
10838
|
+
context
|
|
10839
|
+
);
|
|
10840
|
+
}
|
|
10841
|
+
/**
|
|
10842
|
+
* Delete an operation (must not be linked to carts or orders).
|
|
10843
|
+
* **Endpoint**: `DELETE /v1/operations/{operationId} [ADM-OPERATION-300]`
|
|
10844
|
+
*/
|
|
10845
|
+
async deleteOperation(params, context) {
|
|
10846
|
+
this.required(params, ["operationId"]);
|
|
10847
|
+
await this.request(
|
|
10848
|
+
{
|
|
10849
|
+
method: "DELETE",
|
|
10850
|
+
path: this.buildPath(OperationEndpoints.OPERATION, {
|
|
10851
|
+
operationId: params.operationId
|
|
10852
|
+
})
|
|
10853
|
+
},
|
|
10854
|
+
context
|
|
10855
|
+
);
|
|
10856
|
+
}
|
|
10857
|
+
/**
|
|
10858
|
+
* List accounts linked to a PRIVATE operation.
|
|
10859
|
+
* **Endpoint**: `GET /v1/operations/{operationId}/accounts [ADM-OPERATION-552]`
|
|
10860
|
+
*/
|
|
10861
|
+
async getOperationAccounts(params, context) {
|
|
10862
|
+
this.required(params, ["operationId"]);
|
|
10863
|
+
return this.request(
|
|
10864
|
+
{
|
|
10865
|
+
method: "GET",
|
|
10866
|
+
path: this.buildPath(OperationEndpoints.OPERATION_ACCOUNTS, {
|
|
10867
|
+
operationId: params.operationId
|
|
10868
|
+
}),
|
|
10869
|
+
params: this.buildParams({
|
|
10870
|
+
page: params.page,
|
|
10871
|
+
size: params.size,
|
|
10872
|
+
sort: params.sort,
|
|
10873
|
+
accountIds: params.accountIds,
|
|
10874
|
+
accountName: params.accountName
|
|
10875
|
+
})
|
|
10876
|
+
},
|
|
10877
|
+
context
|
|
10878
|
+
);
|
|
10879
|
+
}
|
|
10880
|
+
/**
|
|
10881
|
+
* Add accounts to a PRIVATE operation.
|
|
10882
|
+
* **Endpoint**: `PUT /v1/operations/{operationId}/accounts [ADM-OPERATION-251]`
|
|
10883
|
+
*/
|
|
10884
|
+
async addOperationAccounts(params, context) {
|
|
10885
|
+
this.required(params, ["operationId", "accountIds"]);
|
|
10886
|
+
await this.request(
|
|
10887
|
+
{
|
|
10888
|
+
method: "PUT",
|
|
10889
|
+
path: this.buildPath(OperationEndpoints.OPERATION_ACCOUNTS, {
|
|
10890
|
+
operationId: params.operationId
|
|
10891
|
+
}),
|
|
10892
|
+
body: { accountIds: params.accountIds }
|
|
10893
|
+
},
|
|
10894
|
+
context
|
|
10895
|
+
);
|
|
10896
|
+
}
|
|
10897
|
+
/**
|
|
10898
|
+
* Remove accounts from a PRIVATE operation.
|
|
10899
|
+
* **Endpoint**: `DELETE /v1/operations/{operationId}/accounts [ADM-OPERATION-351]`
|
|
10900
|
+
*/
|
|
10901
|
+
async removeOperationAccounts(params, context) {
|
|
10902
|
+
this.required(params, ["operationId", "accountIds"]);
|
|
10903
|
+
await this.request(
|
|
10904
|
+
{
|
|
10905
|
+
method: "DELETE",
|
|
10906
|
+
path: this.buildPath(OperationEndpoints.OPERATION_ACCOUNTS, {
|
|
10907
|
+
operationId: params.operationId
|
|
10908
|
+
}),
|
|
10909
|
+
body: { accountIds: params.accountIds }
|
|
10910
|
+
},
|
|
10911
|
+
context
|
|
10912
|
+
);
|
|
10913
|
+
}
|
|
10536
10914
|
/**
|
|
10537
10915
|
* List product variant lines for a shop operation.
|
|
10538
|
-
*
|
|
10539
10916
|
* **Endpoint**: `GET /v1/shop/operations/{operationId}/lines [OPERATION-551]`
|
|
10540
10917
|
*/
|
|
10541
|
-
async
|
|
10918
|
+
async getShopOperationLines(params, context) {
|
|
10542
10919
|
this.required(params, ["operationId"]);
|
|
10543
10920
|
return this.request(
|
|
10544
10921
|
{
|
|
@@ -10558,6 +10935,79 @@ var OperationService = class extends BaseService {
|
|
|
10558
10935
|
context
|
|
10559
10936
|
);
|
|
10560
10937
|
}
|
|
10938
|
+
/**
|
|
10939
|
+
* List product variant lines for an operation.
|
|
10940
|
+
* **Endpoint**: `GET /v1/operations/{operationId}/lines [ADM-OPERATION-551]`
|
|
10941
|
+
*/
|
|
10942
|
+
async getOperationLines(params, context) {
|
|
10943
|
+
this.required(params, ["operationId"]);
|
|
10944
|
+
return this.request(
|
|
10945
|
+
{
|
|
10946
|
+
method: "GET",
|
|
10947
|
+
path: this.buildPath(OperationEndpoints.OPERATION_LINES, {
|
|
10948
|
+
operationId: params.operationId
|
|
10949
|
+
}),
|
|
10950
|
+
params: this.buildParams({
|
|
10951
|
+
page: params.page,
|
|
10952
|
+
size: params.size,
|
|
10953
|
+
sort: params.sort,
|
|
10954
|
+
variantIds: params.variantIds,
|
|
10955
|
+
variantName: params.variantName,
|
|
10956
|
+
minQuantity: params.minQuantity,
|
|
10957
|
+
maxQuantity: params.maxQuantity,
|
|
10958
|
+
recommendedQuantity: params.recommendedQuantity,
|
|
10959
|
+
locale: params.locale
|
|
10960
|
+
})
|
|
10961
|
+
},
|
|
10962
|
+
context
|
|
10963
|
+
);
|
|
10964
|
+
}
|
|
10965
|
+
/**
|
|
10966
|
+
* Add or update variant lines on an operation.
|
|
10967
|
+
* **Endpoint**: `PUT /v1/operations/{operationId}/lines [ADM-OPERATION-250]`
|
|
10968
|
+
*/
|
|
10969
|
+
async addOperationLines(params, context) {
|
|
10970
|
+
this.required(params, ["operationId", "lines"]);
|
|
10971
|
+
await this.request(
|
|
10972
|
+
{
|
|
10973
|
+
method: "PUT",
|
|
10974
|
+
path: this.buildPath(OperationEndpoints.OPERATION_LINES, {
|
|
10975
|
+
operationId: params.operationId
|
|
10976
|
+
}),
|
|
10977
|
+
body: params.lines
|
|
10978
|
+
},
|
|
10979
|
+
context
|
|
10980
|
+
);
|
|
10981
|
+
}
|
|
10982
|
+
/**
|
|
10983
|
+
* Remove variant lines from an operation.
|
|
10984
|
+
* **Endpoint**: `DELETE /v1/operations/{operationId}/lines [ADM-OPERATION-350]`
|
|
10985
|
+
*/
|
|
10986
|
+
async removeOperationLines(params, context) {
|
|
10987
|
+
this.required(params, ["operationId", "variantIds"]);
|
|
10988
|
+
await this.request(
|
|
10989
|
+
{
|
|
10990
|
+
method: "DELETE",
|
|
10991
|
+
path: this.buildPath(OperationEndpoints.OPERATION_LINES, {
|
|
10992
|
+
operationId: params.operationId
|
|
10993
|
+
}),
|
|
10994
|
+
body: { variantIds: params.variantIds }
|
|
10995
|
+
},
|
|
10996
|
+
context
|
|
10997
|
+
);
|
|
10998
|
+
}
|
|
10999
|
+
/** @deprecated Alias for {@link getOperations}. */
|
|
11000
|
+
async getAdminOperations(params = {}, context) {
|
|
11001
|
+
return this.getOperations(params, context);
|
|
11002
|
+
}
|
|
11003
|
+
/** @deprecated Alias for {@link getOperation}. */
|
|
11004
|
+
async getAdminOperation(params, context) {
|
|
11005
|
+
return this.getOperation(params, context);
|
|
11006
|
+
}
|
|
11007
|
+
/** @deprecated Alias for {@link getOperationLines}. */
|
|
11008
|
+
async getAdminOperationLines(params, context) {
|
|
11009
|
+
return this.getOperationLines(params, context);
|
|
11010
|
+
}
|
|
10561
11011
|
};
|
|
10562
11012
|
|
|
10563
11013
|
// src/services/attributes/endpoints.ts
|
|
@@ -11205,9 +11655,24 @@ function createDjustClient(config) {
|
|
|
11205
11655
|
deleteStoredPaymentMethod: (p) => services.payment.deleteStoredPaymentMethod(p, ctx),
|
|
11206
11656
|
precheckPurchaseCardL3: (p) => services.payment.precheckPurchaseCardL3(p, ctx),
|
|
11207
11657
|
// ==================== OPERATIONS ====================
|
|
11658
|
+
getShopOperations: (p) => services.operation.getShopOperations(p, ctx),
|
|
11208
11659
|
getOperations: (p) => services.operation.getOperations(p, ctx),
|
|
11660
|
+
getShopOperation: (p) => services.operation.getShopOperation(p, ctx),
|
|
11209
11661
|
getOperation: (p) => services.operation.getOperation(p, ctx),
|
|
11662
|
+
getShopOperationLines: (p) => services.operation.getShopOperationLines(p, ctx),
|
|
11210
11663
|
getOperationLines: (p) => services.operation.getOperationLines(p, ctx),
|
|
11664
|
+
getAdminOperations: (p) => services.operation.getAdminOperations(p, ctx),
|
|
11665
|
+
getAdminOperation: (p) => services.operation.getAdminOperation(p, ctx),
|
|
11666
|
+
getAdminOperationLines: (p) => services.operation.getAdminOperationLines(p, ctx),
|
|
11667
|
+
createOperation: (p) => services.operation.createOperation(p, ctx),
|
|
11668
|
+
updateOperation: (p) => services.operation.updateOperation(p, ctx),
|
|
11669
|
+
updateOperationDetails: (p) => services.operation.updateOperationDetails(p, ctx),
|
|
11670
|
+
deleteOperation: (p) => services.operation.deleteOperation(p, ctx),
|
|
11671
|
+
getOperationAccounts: (p) => services.operation.getOperationAccounts(p, ctx),
|
|
11672
|
+
addOperationAccounts: (p) => services.operation.addOperationAccounts(p, ctx),
|
|
11673
|
+
removeOperationAccounts: (p) => services.operation.removeOperationAccounts(p, ctx),
|
|
11674
|
+
addOperationLines: (p) => services.operation.addOperationLines(p, ctx),
|
|
11675
|
+
removeOperationLines: (p) => services.operation.removeOperationLines(p, ctx),
|
|
11211
11676
|
// ==================== INCIDENTS ====================
|
|
11212
11677
|
getIncidents: (p) => services.incident.getIncidents(p, ctx),
|
|
11213
11678
|
getIncident: (p) => services.incident.getIncident(p, ctx),
|
|
@@ -11491,6 +11956,19 @@ function mergeTransportHooks(...hookSets) {
|
|
|
11491
11956
|
return merged;
|
|
11492
11957
|
}
|
|
11493
11958
|
|
|
11959
|
+
// src/services/operation/definitions.ts
|
|
11960
|
+
var OperationType = /* @__PURE__ */ ((OperationType2) => {
|
|
11961
|
+
OperationType2["PUBLIC"] = "PUBLIC";
|
|
11962
|
+
OperationType2["PRIVATE"] = "PRIVATE";
|
|
11963
|
+
return OperationType2;
|
|
11964
|
+
})(OperationType || {});
|
|
11965
|
+
var OperationStatus = /* @__PURE__ */ ((OperationStatus2) => {
|
|
11966
|
+
OperationStatus2["DRAFT"] = "DRAFT";
|
|
11967
|
+
OperationStatus2["ACTIVE"] = "ACTIVE";
|
|
11968
|
+
OperationStatus2["INACTIVE"] = "INACTIVE";
|
|
11969
|
+
return OperationStatus2;
|
|
11970
|
+
})(OperationStatus || {});
|
|
11971
|
+
|
|
11494
11972
|
// src/services/product/definitions.ts
|
|
11495
11973
|
var AggregationType = /* @__PURE__ */ ((AggregationType2) => {
|
|
11496
11974
|
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":"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
|
|
1
|
+
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../src/services/module.ts"],"names":[],"mappings":"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"}
|