reach-api-sdk 1.0.164 → 1.0.166
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
|
@@ -17483,6 +17483,10 @@ type NotificationSettingPatch = {
|
|
|
17483
17483
|
* Gets or sets a value indicating whether notification settings are enabled for cancellations.
|
|
17484
17484
|
*/
|
|
17485
17485
|
cancellation?: boolean;
|
|
17486
|
+
/**
|
|
17487
|
+
* Gets or sets a value indicating whether notification settings are enabled for reschedule.
|
|
17488
|
+
*/
|
|
17489
|
+
reschedule?: boolean;
|
|
17486
17490
|
/**
|
|
17487
17491
|
* Gets or sets a value indicating whether notification settings are enabled for waitlist registrations.
|
|
17488
17492
|
*/
|
|
@@ -40792,7 +40796,11 @@ declare class StripeAccountService {
|
|
|
40792
40796
|
* @returns StripeAccountPage Success
|
|
40793
40797
|
* @throws ApiError
|
|
40794
40798
|
*/
|
|
40795
|
-
getPage({ stripeChargesEnabled, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40799
|
+
getPage({ ids, stripeChargesEnabled, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40800
|
+
/**
|
|
40801
|
+
* Gets or sets the queryable stripe account ids.
|
|
40802
|
+
*/
|
|
40803
|
+
ids?: Array<string>;
|
|
40796
40804
|
/**
|
|
40797
40805
|
* Gets or sets a value indicating whether stripe charges are enabled.
|
|
40798
40806
|
*/
|
|
@@ -40880,7 +40888,11 @@ declare class StripeAccountService {
|
|
|
40880
40888
|
* @returns boolean Success
|
|
40881
40889
|
* @throws ApiError
|
|
40882
40890
|
*/
|
|
40883
|
-
exists({ stripeChargesEnabled, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40891
|
+
exists({ ids, stripeChargesEnabled, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40892
|
+
/**
|
|
40893
|
+
* Gets or sets the queryable stripe account ids.
|
|
40894
|
+
*/
|
|
40895
|
+
ids?: Array<string>;
|
|
40884
40896
|
/**
|
|
40885
40897
|
* Gets or sets a value indicating whether stripe charges are enabled.
|
|
40886
40898
|
*/
|
|
@@ -40935,7 +40947,11 @@ declare class StripeAccountService {
|
|
|
40935
40947
|
* @returns StripeAccount Success
|
|
40936
40948
|
* @throws ApiError
|
|
40937
40949
|
*/
|
|
40938
|
-
getListWithoutReferences({ stripeChargesEnabled, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40950
|
+
getListWithoutReferences({ ids, stripeChargesEnabled, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
40951
|
+
/**
|
|
40952
|
+
* Gets or sets the queryable stripe account ids.
|
|
40953
|
+
*/
|
|
40954
|
+
ids?: Array<string>;
|
|
40939
40955
|
/**
|
|
40940
40956
|
* Gets or sets a value indicating whether stripe charges are enabled.
|
|
40941
40957
|
*/
|
|
@@ -40990,7 +41006,11 @@ declare class StripeAccountService {
|
|
|
40990
41006
|
* @returns StripeAccount Success
|
|
40991
41007
|
* @throws ApiError
|
|
40992
41008
|
*/
|
|
40993
|
-
getListIdName({ stripeChargesEnabled, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
41009
|
+
getListIdName({ ids, stripeChargesEnabled, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
41010
|
+
/**
|
|
41011
|
+
* Gets or sets the queryable stripe account ids.
|
|
41012
|
+
*/
|
|
41013
|
+
ids?: Array<string>;
|
|
40994
41014
|
/**
|
|
40995
41015
|
* Gets or sets a value indicating whether stripe charges are enabled.
|
|
40996
41016
|
*/
|
|
@@ -45222,6 +45242,10 @@ type DatabaseState = {
|
|
|
45222
45242
|
* Gets or sets a value indicating whether stripe setup is required in order to process payments.
|
|
45223
45243
|
*/
|
|
45224
45244
|
stripeSetupRequired: boolean;
|
|
45245
|
+
/**
|
|
45246
|
+
* Gets or sets a value indicating whether their are issues with stripe that need resolving.
|
|
45247
|
+
*/
|
|
45248
|
+
stripeFixPayments: boolean;
|
|
45225
45249
|
/**
|
|
45226
45250
|
* Gets a value indicating whether multiple activity type database records exist.
|
|
45227
45251
|
*/
|
package/dist/reach-sdk.js
CHANGED
|
@@ -29374,6 +29374,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
29374
29374
|
* @throws ApiError
|
|
29375
29375
|
*/
|
|
29376
29376
|
getPage({
|
|
29377
|
+
ids,
|
|
29377
29378
|
stripeChargesEnabled,
|
|
29378
29379
|
pageNumber,
|
|
29379
29380
|
take,
|
|
@@ -29391,6 +29392,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
29391
29392
|
method: "GET",
|
|
29392
29393
|
url: "/api/stripe-accounts",
|
|
29393
29394
|
query: {
|
|
29395
|
+
Ids: ids,
|
|
29394
29396
|
StripeChargesEnabled: stripeChargesEnabled,
|
|
29395
29397
|
PageNumber: pageNumber,
|
|
29396
29398
|
Take: take,
|
|
@@ -29480,6 +29482,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
29480
29482
|
* @throws ApiError
|
|
29481
29483
|
*/
|
|
29482
29484
|
exists({
|
|
29485
|
+
ids,
|
|
29483
29486
|
stripeChargesEnabled,
|
|
29484
29487
|
pageNumber,
|
|
29485
29488
|
take,
|
|
@@ -29497,6 +29500,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
29497
29500
|
method: "GET",
|
|
29498
29501
|
url: "/api/stripe-accounts/exists",
|
|
29499
29502
|
query: {
|
|
29503
|
+
Ids: ids,
|
|
29500
29504
|
StripeChargesEnabled: stripeChargesEnabled,
|
|
29501
29505
|
PageNumber: pageNumber,
|
|
29502
29506
|
Take: take,
|
|
@@ -29523,6 +29527,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
29523
29527
|
* @throws ApiError
|
|
29524
29528
|
*/
|
|
29525
29529
|
getListWithoutReferences({
|
|
29530
|
+
ids,
|
|
29526
29531
|
stripeChargesEnabled,
|
|
29527
29532
|
pageNumber,
|
|
29528
29533
|
take,
|
|
@@ -29540,6 +29545,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
29540
29545
|
method: "GET",
|
|
29541
29546
|
url: "/api/stripe-accounts/without-references",
|
|
29542
29547
|
query: {
|
|
29548
|
+
Ids: ids,
|
|
29543
29549
|
StripeChargesEnabled: stripeChargesEnabled,
|
|
29544
29550
|
PageNumber: pageNumber,
|
|
29545
29551
|
Take: take,
|
|
@@ -29566,6 +29572,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
29566
29572
|
* @throws ApiError
|
|
29567
29573
|
*/
|
|
29568
29574
|
getListIdName({
|
|
29575
|
+
ids,
|
|
29569
29576
|
stripeChargesEnabled,
|
|
29570
29577
|
pageNumber,
|
|
29571
29578
|
take,
|
|
@@ -29583,6 +29590,7 @@ const request = (config, options, axiosClient = axios) => {
|
|
|
29583
29590
|
method: "GET",
|
|
29584
29591
|
url: "/api/stripe-accounts/id-name",
|
|
29585
29592
|
query: {
|
|
29593
|
+
Ids: ids,
|
|
29586
29594
|
StripeChargesEnabled: stripeChargesEnabled,
|
|
29587
29595
|
PageNumber: pageNumber,
|
|
29588
29596
|
Take: take,
|
package/package.json
CHANGED
|
@@ -85889,6 +85889,14 @@ paths:
|
|
|
85889
85889
|
summary: Gets a list of resources.
|
|
85890
85890
|
operationId: GetPage
|
|
85891
85891
|
parameters:
|
|
85892
|
+
- name: Ids
|
|
85893
|
+
in: query
|
|
85894
|
+
description: Gets or sets the queryable stripe account ids.
|
|
85895
|
+
schema:
|
|
85896
|
+
type: array
|
|
85897
|
+
items:
|
|
85898
|
+
type: string
|
|
85899
|
+
format: uuid
|
|
85892
85900
|
- name: StripeChargesEnabled
|
|
85893
85901
|
in: query
|
|
85894
85902
|
description: Gets or sets a value indicating whether stripe charges are enabled.
|
|
@@ -86193,6 +86201,14 @@ paths:
|
|
|
86193
86201
|
summary: Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
86194
86202
|
operationId: Exists
|
|
86195
86203
|
parameters:
|
|
86204
|
+
- name: Ids
|
|
86205
|
+
in: query
|
|
86206
|
+
description: Gets or sets the queryable stripe account ids.
|
|
86207
|
+
schema:
|
|
86208
|
+
type: array
|
|
86209
|
+
items:
|
|
86210
|
+
type: string
|
|
86211
|
+
format: uuid
|
|
86196
86212
|
- name: StripeChargesEnabled
|
|
86197
86213
|
in: query
|
|
86198
86214
|
description: Gets or sets a value indicating whether stripe charges are enabled.
|
|
@@ -86319,6 +86335,14 @@ paths:
|
|
|
86319
86335
|
summary: Gets a list of resources unpaged and without references.
|
|
86320
86336
|
operationId: GetListWithoutReferences
|
|
86321
86337
|
parameters:
|
|
86338
|
+
- name: Ids
|
|
86339
|
+
in: query
|
|
86340
|
+
description: Gets or sets the queryable stripe account ids.
|
|
86341
|
+
schema:
|
|
86342
|
+
type: array
|
|
86343
|
+
items:
|
|
86344
|
+
type: string
|
|
86345
|
+
format: uuid
|
|
86322
86346
|
- name: StripeChargesEnabled
|
|
86323
86347
|
in: query
|
|
86324
86348
|
description: Gets or sets a value indicating whether stripe charges are enabled.
|
|
@@ -86451,6 +86475,14 @@ paths:
|
|
|
86451
86475
|
summary: Gets a list of resources.
|
|
86452
86476
|
operationId: GetListIdName
|
|
86453
86477
|
parameters:
|
|
86478
|
+
- name: Ids
|
|
86479
|
+
in: query
|
|
86480
|
+
description: Gets or sets the queryable stripe account ids.
|
|
86481
|
+
schema:
|
|
86482
|
+
type: array
|
|
86483
|
+
items:
|
|
86484
|
+
type: string
|
|
86485
|
+
format: uuid
|
|
86454
86486
|
- name: StripeChargesEnabled
|
|
86455
86487
|
in: query
|
|
86456
86488
|
description: Gets or sets a value indicating whether stripe charges are enabled.
|
|
@@ -119311,6 +119343,7 @@ components:
|
|
|
119311
119343
|
- sessionsExist
|
|
119312
119344
|
- slotsExist
|
|
119313
119345
|
- storefrontTouched
|
|
119346
|
+
- stripeFixPayments
|
|
119314
119347
|
- stripeSetupRequired
|
|
119315
119348
|
- surveysExist
|
|
119316
119349
|
- templatesExist
|
|
@@ -119338,6 +119371,10 @@ components:
|
|
|
119338
119371
|
type: boolean
|
|
119339
119372
|
description: Gets or sets a value indicating whether stripe setup is required in order to process payments.
|
|
119340
119373
|
default: false
|
|
119374
|
+
stripeFixPayments:
|
|
119375
|
+
type: boolean
|
|
119376
|
+
description: Gets or sets a value indicating whether their are issues with stripe that need resolving.
|
|
119377
|
+
default: false
|
|
119341
119378
|
multipleActivityTypesExist:
|
|
119342
119379
|
type: boolean
|
|
119343
119380
|
description: Gets a value indicating whether multiple activity type database records exist.
|
|
@@ -121518,6 +121555,10 @@ components:
|
|
|
121518
121555
|
type: boolean
|
|
121519
121556
|
description: Gets or sets a value indicating whether notification settings are enabled for cancellations.
|
|
121520
121557
|
default: false
|
|
121558
|
+
reschedule:
|
|
121559
|
+
type: boolean
|
|
121560
|
+
description: Gets or sets a value indicating whether notification settings are enabled for reschedule.
|
|
121561
|
+
default: false
|
|
121521
121562
|
waitlistActivity:
|
|
121522
121563
|
type: boolean
|
|
121523
121564
|
description: Gets or sets a value indicating whether notification settings are enabled for waitlist registrations.
|
|
@@ -27,6 +27,10 @@ export type DatabaseState = {
|
|
|
27
27
|
* Gets or sets a value indicating whether stripe setup is required in order to process payments.
|
|
28
28
|
*/
|
|
29
29
|
stripeSetupRequired: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* Gets or sets a value indicating whether their are issues with stripe that need resolving.
|
|
32
|
+
*/
|
|
33
|
+
stripeFixPayments: boolean;
|
|
30
34
|
/**
|
|
31
35
|
* Gets a value indicating whether multiple activity type database records exist.
|
|
32
36
|
*/
|
|
@@ -23,6 +23,10 @@ export type NotificationSettingPatch = {
|
|
|
23
23
|
* Gets or sets a value indicating whether notification settings are enabled for cancellations.
|
|
24
24
|
*/
|
|
25
25
|
cancellation?: boolean;
|
|
26
|
+
/**
|
|
27
|
+
* Gets or sets a value indicating whether notification settings are enabled for reschedule.
|
|
28
|
+
*/
|
|
29
|
+
reschedule?: boolean;
|
|
26
30
|
/**
|
|
27
31
|
* Gets or sets a value indicating whether notification settings are enabled for waitlist registrations.
|
|
28
32
|
*/
|
|
@@ -239,6 +239,7 @@ export class StripeAccountService {
|
|
|
239
239
|
* @throws ApiError
|
|
240
240
|
*/
|
|
241
241
|
public getPage({
|
|
242
|
+
ids,
|
|
242
243
|
stripeChargesEnabled,
|
|
243
244
|
pageNumber,
|
|
244
245
|
take,
|
|
@@ -252,6 +253,10 @@ export class StripeAccountService {
|
|
|
252
253
|
isLive,
|
|
253
254
|
sortOrderDirection,
|
|
254
255
|
}: {
|
|
256
|
+
/**
|
|
257
|
+
* Gets or sets the queryable stripe account ids.
|
|
258
|
+
*/
|
|
259
|
+
ids?: Array<string>;
|
|
255
260
|
/**
|
|
256
261
|
* Gets or sets a value indicating whether stripe charges are enabled.
|
|
257
262
|
*/
|
|
@@ -305,6 +310,7 @@ export class StripeAccountService {
|
|
|
305
310
|
method: 'GET',
|
|
306
311
|
url: '/api/stripe-accounts',
|
|
307
312
|
query: {
|
|
313
|
+
Ids: ids,
|
|
308
314
|
StripeChargesEnabled: stripeChargesEnabled,
|
|
309
315
|
PageNumber: pageNumber,
|
|
310
316
|
Take: take,
|
|
@@ -413,6 +419,7 @@ export class StripeAccountService {
|
|
|
413
419
|
* @throws ApiError
|
|
414
420
|
*/
|
|
415
421
|
public exists({
|
|
422
|
+
ids,
|
|
416
423
|
stripeChargesEnabled,
|
|
417
424
|
pageNumber,
|
|
418
425
|
take,
|
|
@@ -426,6 +433,10 @@ export class StripeAccountService {
|
|
|
426
433
|
isLive,
|
|
427
434
|
sortOrderDirection,
|
|
428
435
|
}: {
|
|
436
|
+
/**
|
|
437
|
+
* Gets or sets the queryable stripe account ids.
|
|
438
|
+
*/
|
|
439
|
+
ids?: Array<string>;
|
|
429
440
|
/**
|
|
430
441
|
* Gets or sets a value indicating whether stripe charges are enabled.
|
|
431
442
|
*/
|
|
@@ -479,6 +490,7 @@ export class StripeAccountService {
|
|
|
479
490
|
method: 'GET',
|
|
480
491
|
url: '/api/stripe-accounts/exists',
|
|
481
492
|
query: {
|
|
493
|
+
Ids: ids,
|
|
482
494
|
StripeChargesEnabled: stripeChargesEnabled,
|
|
483
495
|
PageNumber: pageNumber,
|
|
484
496
|
Take: take,
|
|
@@ -506,6 +518,7 @@ export class StripeAccountService {
|
|
|
506
518
|
* @throws ApiError
|
|
507
519
|
*/
|
|
508
520
|
public getListWithoutReferences({
|
|
521
|
+
ids,
|
|
509
522
|
stripeChargesEnabled,
|
|
510
523
|
pageNumber,
|
|
511
524
|
take,
|
|
@@ -519,6 +532,10 @@ export class StripeAccountService {
|
|
|
519
532
|
isLive,
|
|
520
533
|
sortOrderDirection,
|
|
521
534
|
}: {
|
|
535
|
+
/**
|
|
536
|
+
* Gets or sets the queryable stripe account ids.
|
|
537
|
+
*/
|
|
538
|
+
ids?: Array<string>;
|
|
522
539
|
/**
|
|
523
540
|
* Gets or sets a value indicating whether stripe charges are enabled.
|
|
524
541
|
*/
|
|
@@ -572,6 +589,7 @@ export class StripeAccountService {
|
|
|
572
589
|
method: 'GET',
|
|
573
590
|
url: '/api/stripe-accounts/without-references',
|
|
574
591
|
query: {
|
|
592
|
+
Ids: ids,
|
|
575
593
|
StripeChargesEnabled: stripeChargesEnabled,
|
|
576
594
|
PageNumber: pageNumber,
|
|
577
595
|
Take: take,
|
|
@@ -599,6 +617,7 @@ export class StripeAccountService {
|
|
|
599
617
|
* @throws ApiError
|
|
600
618
|
*/
|
|
601
619
|
public getListIdName({
|
|
620
|
+
ids,
|
|
602
621
|
stripeChargesEnabled,
|
|
603
622
|
pageNumber,
|
|
604
623
|
take,
|
|
@@ -612,6 +631,10 @@ export class StripeAccountService {
|
|
|
612
631
|
isLive,
|
|
613
632
|
sortOrderDirection,
|
|
614
633
|
}: {
|
|
634
|
+
/**
|
|
635
|
+
* Gets or sets the queryable stripe account ids.
|
|
636
|
+
*/
|
|
637
|
+
ids?: Array<string>;
|
|
615
638
|
/**
|
|
616
639
|
* Gets or sets a value indicating whether stripe charges are enabled.
|
|
617
640
|
*/
|
|
@@ -665,6 +688,7 @@ export class StripeAccountService {
|
|
|
665
688
|
method: 'GET',
|
|
666
689
|
url: '/api/stripe-accounts/id-name',
|
|
667
690
|
query: {
|
|
691
|
+
Ids: ids,
|
|
668
692
|
StripeChargesEnabled: stripeChargesEnabled,
|
|
669
693
|
PageNumber: pageNumber,
|
|
670
694
|
Take: take,
|