reach-api-sdk 1.0.133 → 1.0.134
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/reach-sdk.d.ts
CHANGED
|
@@ -5035,6 +5035,10 @@ type OrderItem = {
|
|
|
5035
5035
|
* Gets or sets a value indicating whether the order item is refundable.
|
|
5036
5036
|
*/
|
|
5037
5037
|
refundable?: boolean | null;
|
|
5038
|
+
/**
|
|
5039
|
+
* Gets or sets a value indicating whether the order item is rescheduleable.
|
|
5040
|
+
*/
|
|
5041
|
+
rescheduleable?: boolean | null;
|
|
5038
5042
|
};
|
|
5039
5043
|
|
|
5040
5044
|
/**
|
|
@@ -6407,7 +6411,11 @@ declare class CancellationPoliciesService {
|
|
|
6407
6411
|
* @returns CancellationPolicyPage Success
|
|
6408
6412
|
* @throws ApiError
|
|
6409
6413
|
*/
|
|
6410
|
-
getPage({ name, isDefault, isSystem, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6414
|
+
getPage({ ids, name, isDefault, isSystem, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6415
|
+
/**
|
|
6416
|
+
* Gets or sets the queryable cancellation policy ids.
|
|
6417
|
+
*/
|
|
6418
|
+
ids?: Array<string>;
|
|
6411
6419
|
/**
|
|
6412
6420
|
* Gets or sets the queryable name.
|
|
6413
6421
|
*/
|
|
@@ -6503,7 +6511,11 @@ declare class CancellationPoliciesService {
|
|
|
6503
6511
|
* @returns boolean Success
|
|
6504
6512
|
* @throws ApiError
|
|
6505
6513
|
*/
|
|
6506
|
-
exists({ name, isDefault, isSystem, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6514
|
+
exists({ ids, name, isDefault, isSystem, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6515
|
+
/**
|
|
6516
|
+
* Gets or sets the queryable cancellation policy ids.
|
|
6517
|
+
*/
|
|
6518
|
+
ids?: Array<string>;
|
|
6507
6519
|
/**
|
|
6508
6520
|
* Gets or sets the queryable name.
|
|
6509
6521
|
*/
|
|
@@ -6566,7 +6578,11 @@ declare class CancellationPoliciesService {
|
|
|
6566
6578
|
* @returns CancellationPolicy Success
|
|
6567
6579
|
* @throws ApiError
|
|
6568
6580
|
*/
|
|
6569
|
-
getListWithoutReferences({ name, isDefault, isSystem, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6581
|
+
getListWithoutReferences({ ids, name, isDefault, isSystem, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6582
|
+
/**
|
|
6583
|
+
* Gets or sets the queryable cancellation policy ids.
|
|
6584
|
+
*/
|
|
6585
|
+
ids?: Array<string>;
|
|
6570
6586
|
/**
|
|
6571
6587
|
* Gets or sets the queryable name.
|
|
6572
6588
|
*/
|
|
@@ -6629,7 +6645,11 @@ declare class CancellationPoliciesService {
|
|
|
6629
6645
|
* @returns CancellationPolicy Success
|
|
6630
6646
|
* @throws ApiError
|
|
6631
6647
|
*/
|
|
6632
|
-
getListIdName({ name, isDefault, isSystem, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6648
|
+
getListIdName({ ids, name, isDefault, isSystem, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
6649
|
+
/**
|
|
6650
|
+
* Gets or sets the queryable cancellation policy ids.
|
|
6651
|
+
*/
|
|
6652
|
+
ids?: Array<string>;
|
|
6633
6653
|
/**
|
|
6634
6654
|
* Gets or sets the queryable name.
|
|
6635
6655
|
*/
|
|
@@ -10575,7 +10595,7 @@ declare class DealsService {
|
|
|
10575
10595
|
* @returns DealPage Success
|
|
10576
10596
|
* @throws ApiError
|
|
10577
10597
|
*/
|
|
10578
|
-
getPage({ id, ids, target, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10598
|
+
getPage({ id, ids, target, type, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10579
10599
|
/**
|
|
10580
10600
|
* Gets or sets the queryable Deal Id.
|
|
10581
10601
|
*/
|
|
@@ -10588,6 +10608,10 @@ declare class DealsService {
|
|
|
10588
10608
|
* Gets or sets the queryable target.
|
|
10589
10609
|
*/
|
|
10590
10610
|
target?: DealTarget;
|
|
10611
|
+
/**
|
|
10612
|
+
* Gets or sets the queryable type.
|
|
10613
|
+
*/
|
|
10614
|
+
type?: DealType;
|
|
10591
10615
|
/**
|
|
10592
10616
|
* Gets or sets the page number for paged queries.
|
|
10593
10617
|
*/
|
|
@@ -10671,7 +10695,7 @@ declare class DealsService {
|
|
|
10671
10695
|
* @returns boolean Success
|
|
10672
10696
|
* @throws ApiError
|
|
10673
10697
|
*/
|
|
10674
|
-
exists({ id, ids, target, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10698
|
+
exists({ id, ids, target, type, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10675
10699
|
/**
|
|
10676
10700
|
* Gets or sets the queryable Deal Id.
|
|
10677
10701
|
*/
|
|
@@ -10684,6 +10708,10 @@ declare class DealsService {
|
|
|
10684
10708
|
* Gets or sets the queryable target.
|
|
10685
10709
|
*/
|
|
10686
10710
|
target?: DealTarget;
|
|
10711
|
+
/**
|
|
10712
|
+
* Gets or sets the queryable type.
|
|
10713
|
+
*/
|
|
10714
|
+
type?: DealType;
|
|
10687
10715
|
/**
|
|
10688
10716
|
* Gets or sets the page number for paged queries.
|
|
10689
10717
|
*/
|
|
@@ -10734,7 +10762,7 @@ declare class DealsService {
|
|
|
10734
10762
|
* @returns Deal Success
|
|
10735
10763
|
* @throws ApiError
|
|
10736
10764
|
*/
|
|
10737
|
-
getListWithoutReferences({ id, ids, target, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10765
|
+
getListWithoutReferences({ id, ids, target, type, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10738
10766
|
/**
|
|
10739
10767
|
* Gets or sets the queryable Deal Id.
|
|
10740
10768
|
*/
|
|
@@ -10747,6 +10775,10 @@ declare class DealsService {
|
|
|
10747
10775
|
* Gets or sets the queryable target.
|
|
10748
10776
|
*/
|
|
10749
10777
|
target?: DealTarget;
|
|
10778
|
+
/**
|
|
10779
|
+
* Gets or sets the queryable type.
|
|
10780
|
+
*/
|
|
10781
|
+
type?: DealType;
|
|
10750
10782
|
/**
|
|
10751
10783
|
* Gets or sets the page number for paged queries.
|
|
10752
10784
|
*/
|
|
@@ -10797,7 +10829,7 @@ declare class DealsService {
|
|
|
10797
10829
|
* @returns Deal Success
|
|
10798
10830
|
* @throws ApiError
|
|
10799
10831
|
*/
|
|
10800
|
-
getListIdName({ id, ids, target, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10832
|
+
getListIdName({ id, ids, target, type, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
10801
10833
|
/**
|
|
10802
10834
|
* Gets or sets the queryable Deal Id.
|
|
10803
10835
|
*/
|
|
@@ -10810,6 +10842,10 @@ declare class DealsService {
|
|
|
10810
10842
|
* Gets or sets the queryable target.
|
|
10811
10843
|
*/
|
|
10812
10844
|
target?: DealTarget;
|
|
10845
|
+
/**
|
|
10846
|
+
* Gets or sets the queryable type.
|
|
10847
|
+
*/
|
|
10848
|
+
type?: DealType;
|
|
10813
10849
|
/**
|
|
10814
10850
|
* Gets or sets the page number for paged queries.
|
|
10815
10851
|
*/
|
package/dist/reach-sdk.js
CHANGED
|
@@ -2490,6 +2490,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2490
2490
|
* @throws ApiError
|
|
2491
2491
|
*/
|
|
2492
2492
|
getPage({
|
|
2493
|
+
ids,
|
|
2493
2494
|
name,
|
|
2494
2495
|
isDefault,
|
|
2495
2496
|
isSystem,
|
|
@@ -2509,6 +2510,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2509
2510
|
method: "GET",
|
|
2510
2511
|
url: "/api/cancellation-policies",
|
|
2511
2512
|
query: {
|
|
2513
|
+
Ids: ids,
|
|
2512
2514
|
Name: name,
|
|
2513
2515
|
IsDefault: isDefault,
|
|
2514
2516
|
IsSystem: isSystem,
|
|
@@ -2600,6 +2602,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2600
2602
|
* @throws ApiError
|
|
2601
2603
|
*/
|
|
2602
2604
|
exists({
|
|
2605
|
+
ids,
|
|
2603
2606
|
name,
|
|
2604
2607
|
isDefault,
|
|
2605
2608
|
isSystem,
|
|
@@ -2619,6 +2622,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2619
2622
|
method: "GET",
|
|
2620
2623
|
url: "/api/cancellation-policies/exists",
|
|
2621
2624
|
query: {
|
|
2625
|
+
Ids: ids,
|
|
2622
2626
|
Name: name,
|
|
2623
2627
|
IsDefault: isDefault,
|
|
2624
2628
|
IsSystem: isSystem,
|
|
@@ -2647,6 +2651,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2647
2651
|
* @throws ApiError
|
|
2648
2652
|
*/
|
|
2649
2653
|
getListWithoutReferences({
|
|
2654
|
+
ids,
|
|
2650
2655
|
name,
|
|
2651
2656
|
isDefault,
|
|
2652
2657
|
isSystem,
|
|
@@ -2666,6 +2671,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2666
2671
|
method: "GET",
|
|
2667
2672
|
url: "/api/cancellation-policies/without-references",
|
|
2668
2673
|
query: {
|
|
2674
|
+
Ids: ids,
|
|
2669
2675
|
Name: name,
|
|
2670
2676
|
IsDefault: isDefault,
|
|
2671
2677
|
IsSystem: isSystem,
|
|
@@ -2694,6 +2700,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2694
2700
|
* @throws ApiError
|
|
2695
2701
|
*/
|
|
2696
2702
|
getListIdName({
|
|
2703
|
+
ids,
|
|
2697
2704
|
name,
|
|
2698
2705
|
isDefault,
|
|
2699
2706
|
isSystem,
|
|
@@ -2713,6 +2720,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
2713
2720
|
method: "GET",
|
|
2714
2721
|
url: "/api/cancellation-policies/id-name",
|
|
2715
2722
|
query: {
|
|
2723
|
+
Ids: ids,
|
|
2716
2724
|
Name: name,
|
|
2717
2725
|
IsDefault: isDefault,
|
|
2718
2726
|
IsSystem: isSystem,
|
|
@@ -5619,6 +5627,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5619
5627
|
id,
|
|
5620
5628
|
ids,
|
|
5621
5629
|
target,
|
|
5630
|
+
type,
|
|
5622
5631
|
pageNumber,
|
|
5623
5632
|
take,
|
|
5624
5633
|
skip,
|
|
@@ -5638,6 +5647,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5638
5647
|
Id: id,
|
|
5639
5648
|
Ids: ids,
|
|
5640
5649
|
Target: target,
|
|
5650
|
+
Type: type,
|
|
5641
5651
|
PageNumber: pageNumber,
|
|
5642
5652
|
Take: take,
|
|
5643
5653
|
Skip: skip,
|
|
@@ -5729,6 +5739,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5729
5739
|
id,
|
|
5730
5740
|
ids,
|
|
5731
5741
|
target,
|
|
5742
|
+
type,
|
|
5732
5743
|
pageNumber,
|
|
5733
5744
|
take,
|
|
5734
5745
|
skip,
|
|
@@ -5748,6 +5759,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5748
5759
|
Id: id,
|
|
5749
5760
|
Ids: ids,
|
|
5750
5761
|
Target: target,
|
|
5762
|
+
Type: type,
|
|
5751
5763
|
PageNumber: pageNumber,
|
|
5752
5764
|
Take: take,
|
|
5753
5765
|
Skip: skip,
|
|
@@ -5776,6 +5788,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5776
5788
|
id,
|
|
5777
5789
|
ids,
|
|
5778
5790
|
target,
|
|
5791
|
+
type,
|
|
5779
5792
|
pageNumber,
|
|
5780
5793
|
take,
|
|
5781
5794
|
skip,
|
|
@@ -5795,6 +5808,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5795
5808
|
Id: id,
|
|
5796
5809
|
Ids: ids,
|
|
5797
5810
|
Target: target,
|
|
5811
|
+
Type: type,
|
|
5798
5812
|
PageNumber: pageNumber,
|
|
5799
5813
|
Take: take,
|
|
5800
5814
|
Skip: skip,
|
|
@@ -5823,6 +5837,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5823
5837
|
id,
|
|
5824
5838
|
ids,
|
|
5825
5839
|
target,
|
|
5840
|
+
type,
|
|
5826
5841
|
pageNumber,
|
|
5827
5842
|
take,
|
|
5828
5843
|
skip,
|
|
@@ -5842,6 +5857,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
5842
5857
|
Id: id,
|
|
5843
5858
|
Ids: ids,
|
|
5844
5859
|
Target: target,
|
|
5860
|
+
Type: type,
|
|
5845
5861
|
PageNumber: pageNumber,
|
|
5846
5862
|
Take: take,
|
|
5847
5863
|
Skip: skip,
|
package/package.json
CHANGED
|
@@ -6391,6 +6391,14 @@ paths:
|
|
|
6391
6391
|
summary: Gets a list of resources.
|
|
6392
6392
|
operationId: GetPage
|
|
6393
6393
|
parameters:
|
|
6394
|
+
- name: Ids
|
|
6395
|
+
in: query
|
|
6396
|
+
description: Gets or sets the queryable cancellation policy ids.
|
|
6397
|
+
schema:
|
|
6398
|
+
type: array
|
|
6399
|
+
items:
|
|
6400
|
+
type: string
|
|
6401
|
+
format: uuid
|
|
6394
6402
|
- name: Name
|
|
6395
6403
|
in: query
|
|
6396
6404
|
description: Gets or sets the queryable name.
|
|
@@ -6705,6 +6713,14 @@ paths:
|
|
|
6705
6713
|
summary: Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
6706
6714
|
operationId: Exists
|
|
6707
6715
|
parameters:
|
|
6716
|
+
- name: Ids
|
|
6717
|
+
in: query
|
|
6718
|
+
description: Gets or sets the queryable cancellation policy ids.
|
|
6719
|
+
schema:
|
|
6720
|
+
type: array
|
|
6721
|
+
items:
|
|
6722
|
+
type: string
|
|
6723
|
+
format: uuid
|
|
6708
6724
|
- name: Name
|
|
6709
6725
|
in: query
|
|
6710
6726
|
description: Gets or sets the queryable name.
|
|
@@ -6841,6 +6857,14 @@ paths:
|
|
|
6841
6857
|
summary: Gets a list of resources unpaged and without references.
|
|
6842
6858
|
operationId: GetListWithoutReferences
|
|
6843
6859
|
parameters:
|
|
6860
|
+
- name: Ids
|
|
6861
|
+
in: query
|
|
6862
|
+
description: Gets or sets the queryable cancellation policy ids.
|
|
6863
|
+
schema:
|
|
6864
|
+
type: array
|
|
6865
|
+
items:
|
|
6866
|
+
type: string
|
|
6867
|
+
format: uuid
|
|
6844
6868
|
- name: Name
|
|
6845
6869
|
in: query
|
|
6846
6870
|
description: Gets or sets the queryable name.
|
|
@@ -6983,6 +7007,14 @@ paths:
|
|
|
6983
7007
|
summary: Gets a list of resources.
|
|
6984
7008
|
operationId: GetListIdName
|
|
6985
7009
|
parameters:
|
|
7010
|
+
- name: Ids
|
|
7011
|
+
in: query
|
|
7012
|
+
description: Gets or sets the queryable cancellation policy ids.
|
|
7013
|
+
schema:
|
|
7014
|
+
type: array
|
|
7015
|
+
items:
|
|
7016
|
+
type: string
|
|
7017
|
+
format: uuid
|
|
6986
7018
|
- name: Name
|
|
6987
7019
|
in: query
|
|
6988
7020
|
description: Gets or sets the queryable name.
|
|
@@ -15823,6 +15855,11 @@ paths:
|
|
|
15823
15855
|
description: Gets or sets the queryable target.
|
|
15824
15856
|
schema:
|
|
15825
15857
|
$ref: '#/components/schemas/DealTarget'
|
|
15858
|
+
- name: Type
|
|
15859
|
+
in: query
|
|
15860
|
+
description: Gets or sets the queryable type.
|
|
15861
|
+
schema:
|
|
15862
|
+
$ref: '#/components/schemas/DealType'
|
|
15826
15863
|
- name: PageNumber
|
|
15827
15864
|
in: query
|
|
15828
15865
|
description: Gets or sets the page number for paged queries.
|
|
@@ -16141,6 +16178,11 @@ paths:
|
|
|
16141
16178
|
description: Gets or sets the queryable target.
|
|
16142
16179
|
schema:
|
|
16143
16180
|
$ref: '#/components/schemas/DealTarget'
|
|
16181
|
+
- name: Type
|
|
16182
|
+
in: query
|
|
16183
|
+
description: Gets or sets the queryable type.
|
|
16184
|
+
schema:
|
|
16185
|
+
$ref: '#/components/schemas/DealType'
|
|
16144
16186
|
- name: PageNumber
|
|
16145
16187
|
in: query
|
|
16146
16188
|
description: Gets or sets the page number for paged queries.
|
|
@@ -16281,6 +16323,11 @@ paths:
|
|
|
16281
16323
|
description: Gets or sets the queryable target.
|
|
16282
16324
|
schema:
|
|
16283
16325
|
$ref: '#/components/schemas/DealTarget'
|
|
16326
|
+
- name: Type
|
|
16327
|
+
in: query
|
|
16328
|
+
description: Gets or sets the queryable type.
|
|
16329
|
+
schema:
|
|
16330
|
+
$ref: '#/components/schemas/DealType'
|
|
16284
16331
|
- name: PageNumber
|
|
16285
16332
|
in: query
|
|
16286
16333
|
description: Gets or sets the page number for paged queries.
|
|
@@ -16427,6 +16474,11 @@ paths:
|
|
|
16427
16474
|
description: Gets or sets the queryable target.
|
|
16428
16475
|
schema:
|
|
16429
16476
|
$ref: '#/components/schemas/DealTarget'
|
|
16477
|
+
- name: Type
|
|
16478
|
+
in: query
|
|
16479
|
+
description: Gets or sets the queryable type.
|
|
16480
|
+
schema:
|
|
16481
|
+
$ref: '#/components/schemas/DealType'
|
|
16430
16482
|
- name: PageNumber
|
|
16431
16483
|
in: query
|
|
16432
16484
|
description: Gets or sets the page number for paged queries.
|
|
@@ -107565,6 +107617,10 @@ components:
|
|
|
107565
107617
|
type: boolean
|
|
107566
107618
|
description: Gets or sets a value indicating whether the order item is refundable.
|
|
107567
107619
|
nullable: true
|
|
107620
|
+
rescheduleable:
|
|
107621
|
+
type: boolean
|
|
107622
|
+
description: Gets or sets a value indicating whether the order item is rescheduleable.
|
|
107623
|
+
nullable: true
|
|
107568
107624
|
additionalProperties: false
|
|
107569
107625
|
description: Represents an Order of a currently available bookable Reach.Models.OrderItem.Slot within the Reach application.
|
|
107570
107626
|
OrderItemDeal:
|
package/src/models/OrderItem.ts
CHANGED
|
@@ -111,4 +111,8 @@ export type OrderItem = {
|
|
|
111
111
|
* Gets or sets a value indicating whether the order item is refundable.
|
|
112
112
|
*/
|
|
113
113
|
refundable?: boolean | null;
|
|
114
|
+
/**
|
|
115
|
+
* Gets or sets a value indicating whether the order item is rescheduleable.
|
|
116
|
+
*/
|
|
117
|
+
rescheduleable?: boolean | null;
|
|
114
118
|
};
|
|
@@ -194,6 +194,7 @@ export class CancellationPoliciesService {
|
|
|
194
194
|
* @throws ApiError
|
|
195
195
|
*/
|
|
196
196
|
public getPage({
|
|
197
|
+
ids,
|
|
197
198
|
name,
|
|
198
199
|
isDefault,
|
|
199
200
|
isSystem,
|
|
@@ -209,6 +210,10 @@ export class CancellationPoliciesService {
|
|
|
209
210
|
isLive,
|
|
210
211
|
sortOrderDirection,
|
|
211
212
|
}: {
|
|
213
|
+
/**
|
|
214
|
+
* Gets or sets the queryable cancellation policy ids.
|
|
215
|
+
*/
|
|
216
|
+
ids?: Array<string>;
|
|
212
217
|
/**
|
|
213
218
|
* Gets or sets the queryable name.
|
|
214
219
|
*/
|
|
@@ -270,6 +275,7 @@ export class CancellationPoliciesService {
|
|
|
270
275
|
method: 'GET',
|
|
271
276
|
url: '/api/cancellation-policies',
|
|
272
277
|
query: {
|
|
278
|
+
Ids: ids,
|
|
273
279
|
Name: name,
|
|
274
280
|
IsDefault: isDefault,
|
|
275
281
|
IsSystem: isSystem,
|
|
@@ -380,6 +386,7 @@ export class CancellationPoliciesService {
|
|
|
380
386
|
* @throws ApiError
|
|
381
387
|
*/
|
|
382
388
|
public exists({
|
|
389
|
+
ids,
|
|
383
390
|
name,
|
|
384
391
|
isDefault,
|
|
385
392
|
isSystem,
|
|
@@ -395,6 +402,10 @@ export class CancellationPoliciesService {
|
|
|
395
402
|
isLive,
|
|
396
403
|
sortOrderDirection,
|
|
397
404
|
}: {
|
|
405
|
+
/**
|
|
406
|
+
* Gets or sets the queryable cancellation policy ids.
|
|
407
|
+
*/
|
|
408
|
+
ids?: Array<string>;
|
|
398
409
|
/**
|
|
399
410
|
* Gets or sets the queryable name.
|
|
400
411
|
*/
|
|
@@ -456,6 +467,7 @@ export class CancellationPoliciesService {
|
|
|
456
467
|
method: 'GET',
|
|
457
468
|
url: '/api/cancellation-policies/exists',
|
|
458
469
|
query: {
|
|
470
|
+
Ids: ids,
|
|
459
471
|
Name: name,
|
|
460
472
|
IsDefault: isDefault,
|
|
461
473
|
IsSystem: isSystem,
|
|
@@ -485,6 +497,7 @@ export class CancellationPoliciesService {
|
|
|
485
497
|
* @throws ApiError
|
|
486
498
|
*/
|
|
487
499
|
public getListWithoutReferences({
|
|
500
|
+
ids,
|
|
488
501
|
name,
|
|
489
502
|
isDefault,
|
|
490
503
|
isSystem,
|
|
@@ -500,6 +513,10 @@ export class CancellationPoliciesService {
|
|
|
500
513
|
isLive,
|
|
501
514
|
sortOrderDirection,
|
|
502
515
|
}: {
|
|
516
|
+
/**
|
|
517
|
+
* Gets or sets the queryable cancellation policy ids.
|
|
518
|
+
*/
|
|
519
|
+
ids?: Array<string>;
|
|
503
520
|
/**
|
|
504
521
|
* Gets or sets the queryable name.
|
|
505
522
|
*/
|
|
@@ -561,6 +578,7 @@ export class CancellationPoliciesService {
|
|
|
561
578
|
method: 'GET',
|
|
562
579
|
url: '/api/cancellation-policies/without-references',
|
|
563
580
|
query: {
|
|
581
|
+
Ids: ids,
|
|
564
582
|
Name: name,
|
|
565
583
|
IsDefault: isDefault,
|
|
566
584
|
IsSystem: isSystem,
|
|
@@ -590,6 +608,7 @@ export class CancellationPoliciesService {
|
|
|
590
608
|
* @throws ApiError
|
|
591
609
|
*/
|
|
592
610
|
public getListIdName({
|
|
611
|
+
ids,
|
|
593
612
|
name,
|
|
594
613
|
isDefault,
|
|
595
614
|
isSystem,
|
|
@@ -605,6 +624,10 @@ export class CancellationPoliciesService {
|
|
|
605
624
|
isLive,
|
|
606
625
|
sortOrderDirection,
|
|
607
626
|
}: {
|
|
627
|
+
/**
|
|
628
|
+
* Gets or sets the queryable cancellation policy ids.
|
|
629
|
+
*/
|
|
630
|
+
ids?: Array<string>;
|
|
608
631
|
/**
|
|
609
632
|
* Gets or sets the queryable name.
|
|
610
633
|
*/
|
|
@@ -666,6 +689,7 @@ export class CancellationPoliciesService {
|
|
|
666
689
|
method: 'GET',
|
|
667
690
|
url: '/api/cancellation-policies/id-name',
|
|
668
691
|
query: {
|
|
692
|
+
Ids: ids,
|
|
669
693
|
Name: name,
|
|
670
694
|
IsDefault: isDefault,
|
|
671
695
|
IsSystem: isSystem,
|
|
@@ -8,6 +8,7 @@ import type { DealPage } from '../models/DealPage';
|
|
|
8
8
|
import type { DealPatch } from '../models/DealPatch';
|
|
9
9
|
import type { DealPost } from '../models/DealPost';
|
|
10
10
|
import type { DealTarget } from '../models/DealTarget';
|
|
11
|
+
import type { DealType } from '../models/DealType';
|
|
11
12
|
import type { SearchSortOrderDirection } from '../models/SearchSortOrderDirection';
|
|
12
13
|
|
|
13
14
|
import type { CancelablePromise } from '../core/CancelablePromise';
|
|
@@ -198,6 +199,7 @@ export class DealsService {
|
|
|
198
199
|
id,
|
|
199
200
|
ids,
|
|
200
201
|
target,
|
|
202
|
+
type,
|
|
201
203
|
pageNumber,
|
|
202
204
|
take,
|
|
203
205
|
skip,
|
|
@@ -222,6 +224,10 @@ export class DealsService {
|
|
|
222
224
|
* Gets or sets the queryable target.
|
|
223
225
|
*/
|
|
224
226
|
target?: DealTarget;
|
|
227
|
+
/**
|
|
228
|
+
* Gets or sets the queryable type.
|
|
229
|
+
*/
|
|
230
|
+
type?: DealType;
|
|
225
231
|
/**
|
|
226
232
|
* Gets or sets the page number for paged queries.
|
|
227
233
|
*/
|
|
@@ -274,6 +280,7 @@ export class DealsService {
|
|
|
274
280
|
Id: id,
|
|
275
281
|
Ids: ids,
|
|
276
282
|
Target: target,
|
|
283
|
+
Type: type,
|
|
277
284
|
PageNumber: pageNumber,
|
|
278
285
|
Take: take,
|
|
279
286
|
Skip: skip,
|
|
@@ -384,6 +391,7 @@ export class DealsService {
|
|
|
384
391
|
id,
|
|
385
392
|
ids,
|
|
386
393
|
target,
|
|
394
|
+
type,
|
|
387
395
|
pageNumber,
|
|
388
396
|
take,
|
|
389
397
|
skip,
|
|
@@ -408,6 +416,10 @@ export class DealsService {
|
|
|
408
416
|
* Gets or sets the queryable target.
|
|
409
417
|
*/
|
|
410
418
|
target?: DealTarget;
|
|
419
|
+
/**
|
|
420
|
+
* Gets or sets the queryable type.
|
|
421
|
+
*/
|
|
422
|
+
type?: DealType;
|
|
411
423
|
/**
|
|
412
424
|
* Gets or sets the page number for paged queries.
|
|
413
425
|
*/
|
|
@@ -460,6 +472,7 @@ export class DealsService {
|
|
|
460
472
|
Id: id,
|
|
461
473
|
Ids: ids,
|
|
462
474
|
Target: target,
|
|
475
|
+
Type: type,
|
|
463
476
|
PageNumber: pageNumber,
|
|
464
477
|
Take: take,
|
|
465
478
|
Skip: skip,
|
|
@@ -489,6 +502,7 @@ export class DealsService {
|
|
|
489
502
|
id,
|
|
490
503
|
ids,
|
|
491
504
|
target,
|
|
505
|
+
type,
|
|
492
506
|
pageNumber,
|
|
493
507
|
take,
|
|
494
508
|
skip,
|
|
@@ -513,6 +527,10 @@ export class DealsService {
|
|
|
513
527
|
* Gets or sets the queryable target.
|
|
514
528
|
*/
|
|
515
529
|
target?: DealTarget;
|
|
530
|
+
/**
|
|
531
|
+
* Gets or sets the queryable type.
|
|
532
|
+
*/
|
|
533
|
+
type?: DealType;
|
|
516
534
|
/**
|
|
517
535
|
* Gets or sets the page number for paged queries.
|
|
518
536
|
*/
|
|
@@ -565,6 +583,7 @@ export class DealsService {
|
|
|
565
583
|
Id: id,
|
|
566
584
|
Ids: ids,
|
|
567
585
|
Target: target,
|
|
586
|
+
Type: type,
|
|
568
587
|
PageNumber: pageNumber,
|
|
569
588
|
Take: take,
|
|
570
589
|
Skip: skip,
|
|
@@ -594,6 +613,7 @@ export class DealsService {
|
|
|
594
613
|
id,
|
|
595
614
|
ids,
|
|
596
615
|
target,
|
|
616
|
+
type,
|
|
597
617
|
pageNumber,
|
|
598
618
|
take,
|
|
599
619
|
skip,
|
|
@@ -618,6 +638,10 @@ export class DealsService {
|
|
|
618
638
|
* Gets or sets the queryable target.
|
|
619
639
|
*/
|
|
620
640
|
target?: DealTarget;
|
|
641
|
+
/**
|
|
642
|
+
* Gets or sets the queryable type.
|
|
643
|
+
*/
|
|
644
|
+
type?: DealType;
|
|
621
645
|
/**
|
|
622
646
|
* Gets or sets the page number for paged queries.
|
|
623
647
|
*/
|
|
@@ -670,6 +694,7 @@ export class DealsService {
|
|
|
670
694
|
Id: id,
|
|
671
695
|
Ids: ids,
|
|
672
696
|
Target: target,
|
|
697
|
+
Type: type,
|
|
673
698
|
PageNumber: pageNumber,
|
|
674
699
|
Take: take,
|
|
675
700
|
Skip: skip,
|