@stigg/node-server-sdk 0.20.0 → 0.21.0
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/api/entitlements/entitlementsApi.d.ts +1 -4
- package/dist/api/entitlements/entitlementsApi.js +1 -16
- package/dist/api/generated/types.d.ts +42 -813
- package/dist/api/generated/types.js +3 -7
- package/dist/api/initApolloClient.d.ts +2 -2
- package/dist/api/initApolloClient.js +3 -3
- package/dist/client.d.ts +43 -17
- package/dist/client.js +66 -51
- package/dist/configuration.d.ts +3 -11
- package/dist/configuration.js +7 -4
- package/dist/models.d.ts +82 -43
- package/dist/models.js +35 -15
- package/dist/services/cache/cachedEntitlement.d.ts +2 -5
- package/dist/services/cache/cachedEntitlement.js +1 -1
- package/dist/services/entitlementDecisionService.d.ts +2 -2
- package/dist/services/entitlementDecisionService.js +12 -14
- package/dist/services/entitlementsService.d.ts +8 -2
- package/dist/services/entitlementsService.js +71 -21
- package/dist/services/generateRandomSlug.d.ts +1 -0
- package/dist/services/generateRandomSlug.js +10 -0
- package/dist/services/loggerService.d.ts +8 -1
- package/dist/services/loggerService.js +1 -1
- package/dist/utils/ModelMapper.d.ts +6 -3
- package/dist/utils/ModelMapper.js +56 -58
- package/package.json +2 -1
|
@@ -31,48 +31,12 @@ export declare enum AccessDeniedReason {
|
|
|
31
31
|
RequestedUsageExceedingLimit = "RequestedUsageExceedingLimit",
|
|
32
32
|
Unknown = "Unknown"
|
|
33
33
|
}
|
|
34
|
-
export declare type AddAddonsToCustomerSubscriptionInput = {
|
|
35
|
-
/** The id of the record. */
|
|
36
|
-
id: Scalars['String'];
|
|
37
|
-
/** The ids of the relations. */
|
|
38
|
-
relationIds: Array<Scalars['String']>;
|
|
39
|
-
};
|
|
40
|
-
export declare type AddApiKeysToEnvironmentInput = {
|
|
41
|
-
/** The id of the record. */
|
|
42
|
-
id: Scalars['String'];
|
|
43
|
-
/** The ids of the relations. */
|
|
44
|
-
relationIds: Array<Scalars['String']>;
|
|
45
|
-
};
|
|
46
34
|
export declare type AddCompatibleAddonsToPlanInput = {
|
|
47
35
|
/** The id of the record. */
|
|
48
36
|
id: Scalars['String'];
|
|
49
37
|
/** The ids of the relations. */
|
|
50
38
|
relationIds: Array<Scalars['String']>;
|
|
51
39
|
};
|
|
52
|
-
export declare type AddPricesToAddonInput = {
|
|
53
|
-
/** The id of the record. */
|
|
54
|
-
id: Scalars['String'];
|
|
55
|
-
/** The ids of the relations. */
|
|
56
|
-
relationIds: Array<Scalars['String']>;
|
|
57
|
-
};
|
|
58
|
-
export declare type AddPricesToCustomerSubscriptionInput = {
|
|
59
|
-
/** The id of the record. */
|
|
60
|
-
id: Scalars['String'];
|
|
61
|
-
/** The ids of the relations. */
|
|
62
|
-
relationIds: Array<Scalars['String']>;
|
|
63
|
-
};
|
|
64
|
-
export declare type AddPricesToPlanInput = {
|
|
65
|
-
/** The id of the record. */
|
|
66
|
-
id: Scalars['String'];
|
|
67
|
-
/** The ids of the relations. */
|
|
68
|
-
relationIds: Array<Scalars['String']>;
|
|
69
|
-
};
|
|
70
|
-
export declare type AddSubscriptionsToCustomerInput = {
|
|
71
|
-
/** The id of the record. */
|
|
72
|
-
id: Scalars['String'];
|
|
73
|
-
/** The ids of the relations. */
|
|
74
|
-
relationIds: Array<Scalars['String']>;
|
|
75
|
-
};
|
|
76
40
|
export declare type AddonCreateInput = {
|
|
77
41
|
billingId?: Maybe<Scalars['String']>;
|
|
78
42
|
description?: Maybe<Scalars['String']>;
|
|
@@ -82,22 +46,6 @@ export declare type AddonCreateInput = {
|
|
|
82
46
|
refId: Scalars['String'];
|
|
83
47
|
status?: Maybe<PackageStatus>;
|
|
84
48
|
};
|
|
85
|
-
export declare type AddonDeleteFilter = {
|
|
86
|
-
and?: Maybe<Array<AddonDeleteFilter>>;
|
|
87
|
-
billingId?: Maybe<StringFieldComparison>;
|
|
88
|
-
createdAt?: Maybe<DateFieldComparison>;
|
|
89
|
-
description?: Maybe<StringFieldComparison>;
|
|
90
|
-
displayName?: Maybe<StringFieldComparison>;
|
|
91
|
-
environmentId?: Maybe<StringFieldComparison>;
|
|
92
|
-
id?: Maybe<StringFieldComparison>;
|
|
93
|
-
isLatest?: Maybe<BooleanFieldComparison>;
|
|
94
|
-
or?: Maybe<Array<AddonDeleteFilter>>;
|
|
95
|
-
productId?: Maybe<StringFieldComparison>;
|
|
96
|
-
refId?: Maybe<StringFieldComparison>;
|
|
97
|
-
status?: Maybe<PackageStatusFilterComparison>;
|
|
98
|
-
updatedAt?: Maybe<DateFieldComparison>;
|
|
99
|
-
versionNumber?: Maybe<IntFieldComparison>;
|
|
100
|
-
};
|
|
101
49
|
export declare type AddonFilter = {
|
|
102
50
|
and?: Maybe<Array<AddonFilter>>;
|
|
103
51
|
billingId?: Maybe<StringFieldComparison>;
|
|
@@ -249,30 +197,10 @@ export declare type CreateIntegrationInput = {
|
|
|
249
197
|
vendorIdentifier: VendorIdentifier;
|
|
250
198
|
zuoraCredentials?: Maybe<ZuoraCredentialsInput>;
|
|
251
199
|
};
|
|
252
|
-
export declare type CreateManyCustomersInput = {
|
|
253
|
-
/** Array of records to create */
|
|
254
|
-
customers: Array<CustomerInput>;
|
|
255
|
-
};
|
|
256
|
-
export declare type CreateManyEnvironmentsInput = {
|
|
257
|
-
/** Array of records to create */
|
|
258
|
-
environments: Array<CreateEnvironment>;
|
|
259
|
-
};
|
|
260
|
-
export declare type CreateManyHooksInput = {
|
|
261
|
-
/** Array of records to create */
|
|
262
|
-
hooks: Array<CreateHook>;
|
|
263
|
-
};
|
|
264
|
-
export declare type CreateManyIntegrationsInput = {
|
|
265
|
-
/** Array of records to create */
|
|
266
|
-
integrations: Array<CreateIntegrationInput>;
|
|
267
|
-
};
|
|
268
200
|
export declare type CreateManyPackageEntitlementsInput = {
|
|
269
201
|
/** Array of records to create */
|
|
270
202
|
packageEntitlements: Array<PackageEntitlementInput>;
|
|
271
203
|
};
|
|
272
|
-
export declare type CreateManyProductsInput = {
|
|
273
|
-
/** Array of records to create */
|
|
274
|
-
products: Array<ProductCreateInput>;
|
|
275
|
-
};
|
|
276
204
|
export declare type CreateManyPromotionalEntitlementsInput = {
|
|
277
205
|
/** Array of records to create */
|
|
278
206
|
promotionalEntitlements: Array<PromotionalEntitlementInput>;
|
|
@@ -297,18 +225,10 @@ export declare type CreateOneIntegrationInput = {
|
|
|
297
225
|
/** The record to create */
|
|
298
226
|
integration: CreateIntegrationInput;
|
|
299
227
|
};
|
|
300
|
-
export declare type CreateOnePackageEntitlementInput = {
|
|
301
|
-
/** The record to create */
|
|
302
|
-
packageEntitlement: PackageEntitlementInput;
|
|
303
|
-
};
|
|
304
228
|
export declare type CreateOneProductInput = {
|
|
305
229
|
/** The record to create */
|
|
306
230
|
product: ProductCreateInput;
|
|
307
231
|
};
|
|
308
|
-
export declare type CreateOnePromotionalEntitlementInput = {
|
|
309
|
-
/** The record to create */
|
|
310
|
-
promotionalEntitlement: PromotionalEntitlementInput;
|
|
311
|
-
};
|
|
312
232
|
/** Currency */
|
|
313
233
|
export declare enum Currency {
|
|
314
234
|
Usd = "USD"
|
|
@@ -323,19 +243,6 @@ export declare type CursorPaging = {
|
|
|
323
243
|
/** Paginate last */
|
|
324
244
|
last?: Maybe<Scalars['Int']>;
|
|
325
245
|
};
|
|
326
|
-
export declare type CustomerDeleteFilter = {
|
|
327
|
-
and?: Maybe<Array<CustomerDeleteFilter>>;
|
|
328
|
-
billingId?: Maybe<StringFieldComparison>;
|
|
329
|
-
createdAt?: Maybe<DateFieldComparison>;
|
|
330
|
-
crmId?: Maybe<StringFieldComparison>;
|
|
331
|
-
email?: Maybe<StringFieldComparison>;
|
|
332
|
-
environmentId?: Maybe<StringFieldComparison>;
|
|
333
|
-
id?: Maybe<StringFieldComparison>;
|
|
334
|
-
name?: Maybe<StringFieldComparison>;
|
|
335
|
-
or?: Maybe<Array<CustomerDeleteFilter>>;
|
|
336
|
-
refId?: Maybe<StringFieldComparison>;
|
|
337
|
-
updatedAt?: Maybe<DateFieldComparison>;
|
|
338
|
-
};
|
|
339
246
|
export declare type CustomerFilter = {
|
|
340
247
|
and?: Maybe<Array<CustomerFilter>>;
|
|
341
248
|
billingId?: Maybe<StringFieldComparison>;
|
|
@@ -453,19 +360,6 @@ export declare enum CustomerSubscriptionSortFields {
|
|
|
453
360
|
StartDate = "startDate",
|
|
454
361
|
Status = "status"
|
|
455
362
|
}
|
|
456
|
-
export declare type CustomerUpdateFilter = {
|
|
457
|
-
and?: Maybe<Array<CustomerUpdateFilter>>;
|
|
458
|
-
billingId?: Maybe<StringFieldComparison>;
|
|
459
|
-
createdAt?: Maybe<DateFieldComparison>;
|
|
460
|
-
crmId?: Maybe<StringFieldComparison>;
|
|
461
|
-
email?: Maybe<StringFieldComparison>;
|
|
462
|
-
environmentId?: Maybe<StringFieldComparison>;
|
|
463
|
-
id?: Maybe<StringFieldComparison>;
|
|
464
|
-
name?: Maybe<StringFieldComparison>;
|
|
465
|
-
or?: Maybe<Array<CustomerUpdateFilter>>;
|
|
466
|
-
refId?: Maybe<StringFieldComparison>;
|
|
467
|
-
updatedAt?: Maybe<DateFieldComparison>;
|
|
468
|
-
};
|
|
469
363
|
export declare type DateFieldComparison = {
|
|
470
364
|
between?: Maybe<DateFieldComparisonBetween>;
|
|
471
365
|
eq?: Maybe<Scalars['DateTime']>;
|
|
@@ -488,50 +382,6 @@ export declare type DefaultTrialConfigInputDto = {
|
|
|
488
382
|
duration: Scalars['Float'];
|
|
489
383
|
units: TrialPeriodUnits;
|
|
490
384
|
};
|
|
491
|
-
export declare type DeleteManyAddonsInput = {
|
|
492
|
-
/** Filter to find records to delete */
|
|
493
|
-
filter: AddonDeleteFilter;
|
|
494
|
-
};
|
|
495
|
-
export declare type DeleteManyCustomersInput = {
|
|
496
|
-
/** Filter to find records to delete */
|
|
497
|
-
filter: CustomerDeleteFilter;
|
|
498
|
-
};
|
|
499
|
-
export declare type DeleteManyEnvironmentsInput = {
|
|
500
|
-
/** Filter to find records to delete */
|
|
501
|
-
filter: EnvironmentDeleteFilter;
|
|
502
|
-
};
|
|
503
|
-
export declare type DeleteManyEventLogsInput = {
|
|
504
|
-
/** Filter to find records to delete */
|
|
505
|
-
filter: EventLogDeleteFilter;
|
|
506
|
-
};
|
|
507
|
-
export declare type DeleteManyHooksInput = {
|
|
508
|
-
/** Filter to find records to delete */
|
|
509
|
-
filter: HookDeleteFilter;
|
|
510
|
-
};
|
|
511
|
-
export declare type DeleteManyIntegrationsInput = {
|
|
512
|
-
/** Filter to find records to delete */
|
|
513
|
-
filter: IntegrationDeleteFilter;
|
|
514
|
-
};
|
|
515
|
-
export declare type DeleteManyPackageEntitlementsInput = {
|
|
516
|
-
/** Filter to find records to delete */
|
|
517
|
-
filter: PackageEntitlementDeleteFilter;
|
|
518
|
-
};
|
|
519
|
-
export declare type DeleteManyPlansInput = {
|
|
520
|
-
/** Filter to find records to delete */
|
|
521
|
-
filter: PlanDeleteFilter;
|
|
522
|
-
};
|
|
523
|
-
export declare type DeleteManyPricesInput = {
|
|
524
|
-
/** Filter to find records to delete */
|
|
525
|
-
filter: PriceDeleteFilter;
|
|
526
|
-
};
|
|
527
|
-
export declare type DeleteManyProductsInput = {
|
|
528
|
-
/** Filter to find records to delete */
|
|
529
|
-
filter: ProductDeleteFilter;
|
|
530
|
-
};
|
|
531
|
-
export declare type DeleteManyPromotionalEntitlementsInput = {
|
|
532
|
-
/** Filter to find records to delete */
|
|
533
|
-
filter: PromotionalEntitlementDeleteFilter;
|
|
534
|
-
};
|
|
535
385
|
export declare type DeleteOneAddonInput = {
|
|
536
386
|
/** The id of the record to delete. */
|
|
537
387
|
id: Scalars['String'];
|
|
@@ -544,10 +394,6 @@ export declare type DeleteOneEnvironmentInput = {
|
|
|
544
394
|
/** The id of the record to delete. */
|
|
545
395
|
id: Scalars['String'];
|
|
546
396
|
};
|
|
547
|
-
export declare type DeleteOneEventLogInput = {
|
|
548
|
-
/** The id of the record to delete. */
|
|
549
|
-
id: Scalars['String'];
|
|
550
|
-
};
|
|
551
397
|
export declare type DeleteOneFeatureInput = {
|
|
552
398
|
/** The id of the record to delete. */
|
|
553
399
|
id: Scalars['String'];
|
|
@@ -595,12 +441,6 @@ export declare enum EntitlementResetPeriod {
|
|
|
595
441
|
Month = "MONTH",
|
|
596
442
|
Week = "WEEK"
|
|
597
443
|
}
|
|
598
|
-
export declare type EnvironmentDeleteFilter = {
|
|
599
|
-
and?: Maybe<Array<EnvironmentDeleteFilter>>;
|
|
600
|
-
displayName?: Maybe<StringFieldComparison>;
|
|
601
|
-
id?: Maybe<StringFieldComparison>;
|
|
602
|
-
or?: Maybe<Array<EnvironmentDeleteFilter>>;
|
|
603
|
-
};
|
|
604
444
|
export declare type EnvironmentFilter = {
|
|
605
445
|
and?: Maybe<Array<EnvironmentFilter>>;
|
|
606
446
|
displayName?: Maybe<StringFieldComparison>;
|
|
@@ -616,12 +456,6 @@ export declare enum EnvironmentSortFields {
|
|
|
616
456
|
DisplayName = "displayName",
|
|
617
457
|
Id = "id"
|
|
618
458
|
}
|
|
619
|
-
export declare type EnvironmentUpdateFilter = {
|
|
620
|
-
and?: Maybe<Array<EnvironmentUpdateFilter>>;
|
|
621
|
-
displayName?: Maybe<StringFieldComparison>;
|
|
622
|
-
id?: Maybe<StringFieldComparison>;
|
|
623
|
-
or?: Maybe<Array<EnvironmentUpdateFilter>>;
|
|
624
|
-
};
|
|
625
459
|
/** error codes */
|
|
626
460
|
export declare enum ErrorCode {
|
|
627
461
|
AddonNotFound = "AddonNotFound",
|
|
@@ -644,6 +478,7 @@ export declare enum ErrorCode {
|
|
|
644
478
|
PlanNotFound = "PlanNotFound",
|
|
645
479
|
PlansCircularDependencyError = "PlansCircularDependencyError",
|
|
646
480
|
PriceNotFound = "PriceNotFound",
|
|
481
|
+
SubscriptionNotFound = "SubscriptionNotFound",
|
|
647
482
|
TrialsNotAllowedInProduct = "TrialsNotAllowedInProduct",
|
|
648
483
|
UnPublishedPackage = "UnPublishedPackage",
|
|
649
484
|
UncompatibleSubscriptionAddon = "UncompatibleSubscriptionAddon",
|
|
@@ -651,27 +486,6 @@ export declare enum ErrorCode {
|
|
|
651
486
|
UnsupportedFeatureType = "UnsupportedFeatureType",
|
|
652
487
|
UnsupportedVendorIdentifier = "UnsupportedVendorIdentifier"
|
|
653
488
|
}
|
|
654
|
-
export declare type EventLogDeleteFilter = {
|
|
655
|
-
and?: Maybe<Array<EventLogDeleteFilter>>;
|
|
656
|
-
environmentId?: Maybe<StringFieldComparison>;
|
|
657
|
-
id?: Maybe<StringFieldComparison>;
|
|
658
|
-
or?: Maybe<Array<EventLogDeleteFilter>>;
|
|
659
|
-
};
|
|
660
|
-
export declare type EventLogFilter = {
|
|
661
|
-
and?: Maybe<Array<EventLogFilter>>;
|
|
662
|
-
environmentId?: Maybe<StringFieldComparison>;
|
|
663
|
-
id?: Maybe<StringFieldComparison>;
|
|
664
|
-
or?: Maybe<Array<EventLogFilter>>;
|
|
665
|
-
};
|
|
666
|
-
export declare type EventLogSort = {
|
|
667
|
-
direction: SortDirection;
|
|
668
|
-
field: EventLogSortFields;
|
|
669
|
-
nulls?: Maybe<SortNulls>;
|
|
670
|
-
};
|
|
671
|
-
export declare enum EventLogSortFields {
|
|
672
|
-
EnvironmentId = "environmentId",
|
|
673
|
-
Id = "id"
|
|
674
|
-
}
|
|
675
489
|
/** EventLogType */
|
|
676
490
|
export declare enum EventLogType {
|
|
677
491
|
AddonCreated = "ADDON_CREATED",
|
|
@@ -793,15 +607,6 @@ export declare type GetPackageByRefIdInput = {
|
|
|
793
607
|
refId: Scalars['String'];
|
|
794
608
|
versionNumber?: Maybe<Scalars['Float']>;
|
|
795
609
|
};
|
|
796
|
-
export declare type HookDeleteFilter = {
|
|
797
|
-
and?: Maybe<Array<HookDeleteFilter>>;
|
|
798
|
-
createdAt?: Maybe<DateFieldComparison>;
|
|
799
|
-
endpoint?: Maybe<StringFieldComparison>;
|
|
800
|
-
environmentId?: Maybe<StringFieldComparison>;
|
|
801
|
-
id?: Maybe<StringFieldComparison>;
|
|
802
|
-
or?: Maybe<Array<HookDeleteFilter>>;
|
|
803
|
-
status?: Maybe<HookStatusFilterComparison>;
|
|
804
|
-
};
|
|
805
610
|
export declare type HookFilter = {
|
|
806
611
|
and?: Maybe<Array<HookFilter>>;
|
|
807
612
|
createdAt?: Maybe<DateFieldComparison>;
|
|
@@ -844,15 +649,6 @@ export declare type HookStatusFilterComparison = {
|
|
|
844
649
|
notIn?: Maybe<Array<HookStatus>>;
|
|
845
650
|
notLike?: Maybe<HookStatus>;
|
|
846
651
|
};
|
|
847
|
-
export declare type HookUpdateFilter = {
|
|
848
|
-
and?: Maybe<Array<HookUpdateFilter>>;
|
|
849
|
-
createdAt?: Maybe<DateFieldComparison>;
|
|
850
|
-
endpoint?: Maybe<StringFieldComparison>;
|
|
851
|
-
environmentId?: Maybe<StringFieldComparison>;
|
|
852
|
-
id?: Maybe<StringFieldComparison>;
|
|
853
|
-
or?: Maybe<Array<HookUpdateFilter>>;
|
|
854
|
-
status?: Maybe<HookStatusFilterComparison>;
|
|
855
|
-
};
|
|
856
652
|
export declare type InitiateCheckoutInput = {
|
|
857
653
|
addons?: Maybe<Array<CheckoutAddonInput>>;
|
|
858
654
|
billingPeriod: BillingPeriod;
|
|
@@ -880,13 +676,6 @@ export declare type IntFieldComparisonBetween = {
|
|
|
880
676
|
lower: Scalars['Int'];
|
|
881
677
|
upper: Scalars['Int'];
|
|
882
678
|
};
|
|
883
|
-
export declare type IntegrationDeleteFilter = {
|
|
884
|
-
and?: Maybe<Array<IntegrationDeleteFilter>>;
|
|
885
|
-
environmentId?: Maybe<StringFieldComparison>;
|
|
886
|
-
id?: Maybe<StringFieldComparison>;
|
|
887
|
-
or?: Maybe<Array<IntegrationDeleteFilter>>;
|
|
888
|
-
vendorIdentifier?: Maybe<VendorIdentifierFilterComparison>;
|
|
889
|
-
};
|
|
890
679
|
export declare type IntegrationFilter = {
|
|
891
680
|
and?: Maybe<Array<IntegrationFilter>>;
|
|
892
681
|
environmentId?: Maybe<StringFieldComparison>;
|
|
@@ -904,13 +693,6 @@ export declare enum IntegrationSortFields {
|
|
|
904
693
|
Id = "id",
|
|
905
694
|
VendorIdentifier = "vendorIdentifier"
|
|
906
695
|
}
|
|
907
|
-
export declare type IntegrationUpdateFilter = {
|
|
908
|
-
and?: Maybe<Array<IntegrationUpdateFilter>>;
|
|
909
|
-
environmentId?: Maybe<StringFieldComparison>;
|
|
910
|
-
id?: Maybe<StringFieldComparison>;
|
|
911
|
-
or?: Maybe<Array<IntegrationUpdateFilter>>;
|
|
912
|
-
vendorIdentifier?: Maybe<VendorIdentifierFilterComparison>;
|
|
913
|
-
};
|
|
914
696
|
export declare type MemberFilter = {
|
|
915
697
|
and?: Maybe<Array<MemberFilter>>;
|
|
916
698
|
id?: Maybe<StringFieldComparison>;
|
|
@@ -981,15 +763,6 @@ export declare type NumberFieldComparisonBetween = {
|
|
|
981
763
|
lower: Scalars['Float'];
|
|
982
764
|
upper: Scalars['Float'];
|
|
983
765
|
};
|
|
984
|
-
export declare type PackageEntitlementDeleteFilter = {
|
|
985
|
-
and?: Maybe<Array<PackageEntitlementDeleteFilter>>;
|
|
986
|
-
createdAt?: Maybe<DateFieldComparison>;
|
|
987
|
-
environmentId?: Maybe<StringFieldComparison>;
|
|
988
|
-
id?: Maybe<StringFieldComparison>;
|
|
989
|
-
or?: Maybe<Array<PackageEntitlementDeleteFilter>>;
|
|
990
|
-
packageId?: Maybe<StringFieldComparison>;
|
|
991
|
-
updatedAt?: Maybe<DateFieldComparison>;
|
|
992
|
-
};
|
|
993
766
|
export declare type PackageEntitlementFilter = {
|
|
994
767
|
and?: Maybe<Array<PackageEntitlementFilter>>;
|
|
995
768
|
createdAt?: Maybe<DateFieldComparison>;
|
|
@@ -1054,15 +827,6 @@ export declare enum PackageEntitlementSortFields {
|
|
|
1054
827
|
PackageId = "packageId",
|
|
1055
828
|
UpdatedAt = "updatedAt"
|
|
1056
829
|
}
|
|
1057
|
-
export declare type PackageEntitlementUpdateFilter = {
|
|
1058
|
-
and?: Maybe<Array<PackageEntitlementUpdateFilter>>;
|
|
1059
|
-
createdAt?: Maybe<DateFieldComparison>;
|
|
1060
|
-
environmentId?: Maybe<StringFieldComparison>;
|
|
1061
|
-
id?: Maybe<StringFieldComparison>;
|
|
1062
|
-
or?: Maybe<Array<PackageEntitlementUpdateFilter>>;
|
|
1063
|
-
packageId?: Maybe<StringFieldComparison>;
|
|
1064
|
-
updatedAt?: Maybe<DateFieldComparison>;
|
|
1065
|
-
};
|
|
1066
830
|
export declare type PackageEntitlementUpdateInput = {
|
|
1067
831
|
description?: Maybe<Scalars['String']>;
|
|
1068
832
|
hasUnlimitedUsage?: Maybe<Scalars['Boolean']>;
|
|
@@ -1106,8 +870,8 @@ export declare type PlanCreateInput = {
|
|
|
1106
870
|
refId: Scalars['String'];
|
|
1107
871
|
status?: Maybe<PackageStatus>;
|
|
1108
872
|
};
|
|
1109
|
-
export declare type
|
|
1110
|
-
and?: Maybe<Array<
|
|
873
|
+
export declare type PlanFilter = {
|
|
874
|
+
and?: Maybe<Array<PlanFilter>>;
|
|
1111
875
|
billingId?: Maybe<StringFieldComparison>;
|
|
1112
876
|
createdAt?: Maybe<DateFieldComparison>;
|
|
1113
877
|
description?: Maybe<StringFieldComparison>;
|
|
@@ -1115,28 +879,25 @@ export declare type PlanDeleteFilter = {
|
|
|
1115
879
|
environmentId?: Maybe<StringFieldComparison>;
|
|
1116
880
|
id?: Maybe<StringFieldComparison>;
|
|
1117
881
|
isLatest?: Maybe<BooleanFieldComparison>;
|
|
1118
|
-
or?: Maybe<Array<
|
|
882
|
+
or?: Maybe<Array<PlanFilter>>;
|
|
883
|
+
product?: Maybe<PlanFilterProductFilter>;
|
|
1119
884
|
productId?: Maybe<StringFieldComparison>;
|
|
1120
885
|
refId?: Maybe<StringFieldComparison>;
|
|
1121
886
|
status?: Maybe<PackageStatusFilterComparison>;
|
|
1122
887
|
updatedAt?: Maybe<DateFieldComparison>;
|
|
1123
888
|
versionNumber?: Maybe<IntFieldComparison>;
|
|
1124
889
|
};
|
|
1125
|
-
export declare type
|
|
1126
|
-
and?: Maybe<Array<
|
|
1127
|
-
billingId?: Maybe<StringFieldComparison>;
|
|
890
|
+
export declare type PlanFilterProductFilter = {
|
|
891
|
+
and?: Maybe<Array<PlanFilterProductFilter>>;
|
|
1128
892
|
createdAt?: Maybe<DateFieldComparison>;
|
|
1129
893
|
description?: Maybe<StringFieldComparison>;
|
|
1130
894
|
displayName?: Maybe<StringFieldComparison>;
|
|
1131
895
|
environmentId?: Maybe<StringFieldComparison>;
|
|
1132
896
|
id?: Maybe<StringFieldComparison>;
|
|
1133
|
-
|
|
1134
|
-
or?: Maybe<Array<
|
|
1135
|
-
productId?: Maybe<StringFieldComparison>;
|
|
897
|
+
isDefaultProduct?: Maybe<BooleanFieldComparison>;
|
|
898
|
+
or?: Maybe<Array<PlanFilterProductFilter>>;
|
|
1136
899
|
refId?: Maybe<StringFieldComparison>;
|
|
1137
|
-
status?: Maybe<PackageStatusFilterComparison>;
|
|
1138
900
|
updatedAt?: Maybe<DateFieldComparison>;
|
|
1139
|
-
versionNumber?: Maybe<IntFieldComparison>;
|
|
1140
901
|
};
|
|
1141
902
|
export declare type PlanSort = {
|
|
1142
903
|
direction: SortDirection;
|
|
@@ -1174,13 +935,6 @@ export declare type PriceCreateInput = {
|
|
|
1174
935
|
packageId: Scalars['String'];
|
|
1175
936
|
price: MoneyInputDto;
|
|
1176
937
|
};
|
|
1177
|
-
export declare type PriceDeleteFilter = {
|
|
1178
|
-
and?: Maybe<Array<PriceDeleteFilter>>;
|
|
1179
|
-
billingModel?: Maybe<BillingModelFilterComparison>;
|
|
1180
|
-
billingPeriod?: Maybe<BillingPeriodFilterComparison>;
|
|
1181
|
-
id?: Maybe<StringFieldComparison>;
|
|
1182
|
-
or?: Maybe<Array<PriceDeleteFilter>>;
|
|
1183
|
-
};
|
|
1184
938
|
export declare type PriceFilter = {
|
|
1185
939
|
and?: Maybe<Array<PriceFilter>>;
|
|
1186
940
|
billingModel?: Maybe<BillingModelFilterComparison>;
|
|
@@ -1230,18 +984,6 @@ export declare type ProductCreateInput = {
|
|
|
1230
984
|
environmentId: Scalars['String'];
|
|
1231
985
|
refId: Scalars['String'];
|
|
1232
986
|
};
|
|
1233
|
-
export declare type ProductDeleteFilter = {
|
|
1234
|
-
and?: Maybe<Array<ProductDeleteFilter>>;
|
|
1235
|
-
createdAt?: Maybe<DateFieldComparison>;
|
|
1236
|
-
description?: Maybe<StringFieldComparison>;
|
|
1237
|
-
displayName?: Maybe<StringFieldComparison>;
|
|
1238
|
-
environmentId?: Maybe<StringFieldComparison>;
|
|
1239
|
-
id?: Maybe<StringFieldComparison>;
|
|
1240
|
-
isDefaultProduct?: Maybe<BooleanFieldComparison>;
|
|
1241
|
-
or?: Maybe<Array<ProductDeleteFilter>>;
|
|
1242
|
-
refId?: Maybe<StringFieldComparison>;
|
|
1243
|
-
updatedAt?: Maybe<DateFieldComparison>;
|
|
1244
|
-
};
|
|
1245
987
|
export declare type ProductFilter = {
|
|
1246
988
|
and?: Maybe<Array<ProductFilter>>;
|
|
1247
989
|
createdAt?: Maybe<DateFieldComparison>;
|
|
@@ -1274,32 +1016,11 @@ export declare enum ProductSortFields {
|
|
|
1274
1016
|
RefId = "refId",
|
|
1275
1017
|
UpdatedAt = "updatedAt"
|
|
1276
1018
|
}
|
|
1277
|
-
export declare type ProductUpdateFilter = {
|
|
1278
|
-
and?: Maybe<Array<ProductUpdateFilter>>;
|
|
1279
|
-
createdAt?: Maybe<DateFieldComparison>;
|
|
1280
|
-
description?: Maybe<StringFieldComparison>;
|
|
1281
|
-
displayName?: Maybe<StringFieldComparison>;
|
|
1282
|
-
environmentId?: Maybe<StringFieldComparison>;
|
|
1283
|
-
id?: Maybe<StringFieldComparison>;
|
|
1284
|
-
isDefaultProduct?: Maybe<BooleanFieldComparison>;
|
|
1285
|
-
or?: Maybe<Array<ProductUpdateFilter>>;
|
|
1286
|
-
refId?: Maybe<StringFieldComparison>;
|
|
1287
|
-
updatedAt?: Maybe<DateFieldComparison>;
|
|
1288
|
-
};
|
|
1289
1019
|
export declare type ProductUpdateInput = {
|
|
1290
1020
|
description?: Maybe<Scalars['String']>;
|
|
1291
1021
|
displayName?: Maybe<Scalars['String']>;
|
|
1292
1022
|
productSettings?: Maybe<ProductSettingsInput>;
|
|
1293
1023
|
};
|
|
1294
|
-
export declare type PromotionalEntitlementDeleteFilter = {
|
|
1295
|
-
and?: Maybe<Array<PromotionalEntitlementDeleteFilter>>;
|
|
1296
|
-
createdAt?: Maybe<DateFieldComparison>;
|
|
1297
|
-
environmentId?: Maybe<StringFieldComparison>;
|
|
1298
|
-
id?: Maybe<StringFieldComparison>;
|
|
1299
|
-
or?: Maybe<Array<PromotionalEntitlementDeleteFilter>>;
|
|
1300
|
-
status?: Maybe<PromotionalEntitlementStatusFilterComparison>;
|
|
1301
|
-
updatedAt?: Maybe<DateFieldComparison>;
|
|
1302
|
-
};
|
|
1303
1024
|
export declare type PromotionalEntitlementFilter = {
|
|
1304
1025
|
and?: Maybe<Array<PromotionalEntitlementFilter>>;
|
|
1305
1026
|
createdAt?: Maybe<DateFieldComparison>;
|
|
@@ -1366,15 +1087,6 @@ export declare type PromotionalEntitlementStatusFilterComparison = {
|
|
|
1366
1087
|
notIn?: Maybe<Array<PromotionalEntitlementStatus>>;
|
|
1367
1088
|
notLike?: Maybe<PromotionalEntitlementStatus>;
|
|
1368
1089
|
};
|
|
1369
|
-
export declare type PromotionalEntitlementUpdateFilter = {
|
|
1370
|
-
and?: Maybe<Array<PromotionalEntitlementUpdateFilter>>;
|
|
1371
|
-
createdAt?: Maybe<DateFieldComparison>;
|
|
1372
|
-
environmentId?: Maybe<StringFieldComparison>;
|
|
1373
|
-
id?: Maybe<StringFieldComparison>;
|
|
1374
|
-
or?: Maybe<Array<PromotionalEntitlementUpdateFilter>>;
|
|
1375
|
-
status?: Maybe<PromotionalEntitlementStatusFilterComparison>;
|
|
1376
|
-
updatedAt?: Maybe<DateFieldComparison>;
|
|
1377
|
-
};
|
|
1378
1090
|
export declare type PromotionalEntitlementUpdateInput = {
|
|
1379
1091
|
description?: Maybe<Scalars['String']>;
|
|
1380
1092
|
endDate?: Maybe<Scalars['DateTime']>;
|
|
@@ -1391,492 +1103,60 @@ export declare enum PublishMigrationType {
|
|
|
1391
1103
|
AllCustomers = "ALL_CUSTOMERS",
|
|
1392
1104
|
NewCustomers = "NEW_CUSTOMERS"
|
|
1393
1105
|
}
|
|
1394
|
-
export declare type
|
|
1395
|
-
/** The id of the record. */
|
|
1396
|
-
id: Scalars['String'];
|
|
1397
|
-
/** The id of relation. */
|
|
1398
|
-
relationId: Scalars['String'];
|
|
1399
|
-
};
|
|
1400
|
-
export declare type RemoveAccountFromFeatureInput = {
|
|
1401
|
-
/** The id of the record. */
|
|
1402
|
-
id: Scalars['String'];
|
|
1403
|
-
/** The id of relation. */
|
|
1404
|
-
relationId: Scalars['String'];
|
|
1405
|
-
};
|
|
1406
|
-
export declare type RemoveAccountFromHookInput = {
|
|
1407
|
-
/** The id of the record. */
|
|
1408
|
-
id: Scalars['String'];
|
|
1409
|
-
/** The id of relation. */
|
|
1410
|
-
relationId: Scalars['String'];
|
|
1411
|
-
};
|
|
1412
|
-
export declare type RemoveAccountFromIntegrationInput = {
|
|
1413
|
-
/** The id of the record. */
|
|
1414
|
-
id: Scalars['String'];
|
|
1415
|
-
/** The id of relation. */
|
|
1416
|
-
relationId: Scalars['String'];
|
|
1417
|
-
};
|
|
1418
|
-
export declare type RemoveAccountFromMemberInput = {
|
|
1419
|
-
/** The id of the record. */
|
|
1420
|
-
id: Scalars['String'];
|
|
1421
|
-
/** The id of relation. */
|
|
1422
|
-
relationId: Scalars['String'];
|
|
1423
|
-
};
|
|
1424
|
-
export declare type RemoveAddonFromSubscriptionAddonInput = {
|
|
1106
|
+
export declare type RemoveBasePlanFromPlanInput = {
|
|
1425
1107
|
/** The id of the record. */
|
|
1426
1108
|
id: Scalars['String'];
|
|
1427
1109
|
/** The id of relation. */
|
|
1428
1110
|
relationId: Scalars['String'];
|
|
1429
1111
|
};
|
|
1430
|
-
export declare type
|
|
1112
|
+
export declare type RemoveCompatibleAddonsFromPlanInput = {
|
|
1431
1113
|
/** The id of the record. */
|
|
1432
1114
|
id: Scalars['String'];
|
|
1433
1115
|
/** The ids of the relations. */
|
|
1434
1116
|
relationIds: Array<Scalars['String']>;
|
|
1435
1117
|
};
|
|
1436
|
-
export declare type
|
|
1118
|
+
export declare type SetBasePlanOnPlanInput = {
|
|
1437
1119
|
/** The id of the record. */
|
|
1438
1120
|
id: Scalars['String'];
|
|
1439
1121
|
/** The id of relation. */
|
|
1440
1122
|
relationId: Scalars['String'];
|
|
1441
1123
|
};
|
|
1442
|
-
export declare type
|
|
1124
|
+
export declare type SetCompatibleAddonsOnPlanInput = {
|
|
1443
1125
|
/** The id of the record. */
|
|
1444
1126
|
id: Scalars['String'];
|
|
1445
1127
|
/** The ids of the relations. */
|
|
1446
1128
|
relationIds: Array<Scalars['String']>;
|
|
1447
1129
|
};
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1130
|
+
/** Sort Directions */
|
|
1131
|
+
export declare enum SortDirection {
|
|
1132
|
+
Asc = "ASC",
|
|
1133
|
+
Desc = "DESC"
|
|
1134
|
+
}
|
|
1135
|
+
/** Sort Nulls Options */
|
|
1136
|
+
export declare enum SortNulls {
|
|
1137
|
+
NullsFirst = "NULLS_FIRST",
|
|
1138
|
+
NullsLast = "NULLS_LAST"
|
|
1139
|
+
}
|
|
1140
|
+
export declare type StringFieldComparison = {
|
|
1141
|
+
eq?: Maybe<Scalars['String']>;
|
|
1142
|
+
gt?: Maybe<Scalars['String']>;
|
|
1143
|
+
gte?: Maybe<Scalars['String']>;
|
|
1144
|
+
iLike?: Maybe<Scalars['String']>;
|
|
1145
|
+
in?: Maybe<Array<Scalars['String']>>;
|
|
1146
|
+
is?: Maybe<Scalars['Boolean']>;
|
|
1147
|
+
isNot?: Maybe<Scalars['Boolean']>;
|
|
1148
|
+
like?: Maybe<Scalars['String']>;
|
|
1149
|
+
lt?: Maybe<Scalars['String']>;
|
|
1150
|
+
lte?: Maybe<Scalars['String']>;
|
|
1151
|
+
neq?: Maybe<Scalars['String']>;
|
|
1152
|
+
notILike?: Maybe<Scalars['String']>;
|
|
1153
|
+
notIn?: Maybe<Array<Scalars['String']>>;
|
|
1154
|
+
notLike?: Maybe<Scalars['String']>;
|
|
1453
1155
|
};
|
|
1454
|
-
export declare type
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
relationId: Scalars['String'];
|
|
1459
|
-
};
|
|
1460
|
-
export declare type RemoveCustomerFromUsageMeasurementInput = {
|
|
1461
|
-
/** The id of the record. */
|
|
1462
|
-
id: Scalars['String'];
|
|
1463
|
-
/** The id of relation. */
|
|
1464
|
-
relationId: Scalars['String'];
|
|
1465
|
-
};
|
|
1466
|
-
export declare type RemoveEnvironmentFromAddonInput = {
|
|
1467
|
-
/** The id of the record. */
|
|
1468
|
-
id: Scalars['String'];
|
|
1469
|
-
/** The id of relation. */
|
|
1470
|
-
relationId: Scalars['String'];
|
|
1471
|
-
};
|
|
1472
|
-
export declare type RemoveEnvironmentFromCustomerInput = {
|
|
1473
|
-
/** The id of the record. */
|
|
1474
|
-
id: Scalars['String'];
|
|
1475
|
-
/** The id of relation. */
|
|
1476
|
-
relationId: Scalars['String'];
|
|
1477
|
-
};
|
|
1478
|
-
export declare type RemoveEnvironmentFromCustomerSubscriptionInput = {
|
|
1479
|
-
/** The id of the record. */
|
|
1480
|
-
id: Scalars['String'];
|
|
1481
|
-
/** The id of relation. */
|
|
1482
|
-
relationId: Scalars['String'];
|
|
1483
|
-
};
|
|
1484
|
-
export declare type RemoveEnvironmentFromEventLogInput = {
|
|
1485
|
-
/** The id of the record. */
|
|
1486
|
-
id: Scalars['String'];
|
|
1487
|
-
/** The id of relation. */
|
|
1488
|
-
relationId: Scalars['String'];
|
|
1489
|
-
};
|
|
1490
|
-
export declare type RemoveEnvironmentFromFeatureInput = {
|
|
1491
|
-
/** The id of the record. */
|
|
1492
|
-
id: Scalars['String'];
|
|
1493
|
-
/** The id of relation. */
|
|
1494
|
-
relationId: Scalars['String'];
|
|
1495
|
-
};
|
|
1496
|
-
export declare type RemoveEnvironmentFromHookInput = {
|
|
1497
|
-
/** The id of the record. */
|
|
1498
|
-
id: Scalars['String'];
|
|
1499
|
-
/** The id of relation. */
|
|
1500
|
-
relationId: Scalars['String'];
|
|
1501
|
-
};
|
|
1502
|
-
export declare type RemoveEnvironmentFromIntegrationInput = {
|
|
1503
|
-
/** The id of the record. */
|
|
1504
|
-
id: Scalars['String'];
|
|
1505
|
-
/** The id of relation. */
|
|
1506
|
-
relationId: Scalars['String'];
|
|
1507
|
-
};
|
|
1508
|
-
export declare type RemoveEnvironmentFromPlanInput = {
|
|
1509
|
-
/** The id of the record. */
|
|
1510
|
-
id: Scalars['String'];
|
|
1511
|
-
/** The id of relation. */
|
|
1512
|
-
relationId: Scalars['String'];
|
|
1513
|
-
};
|
|
1514
|
-
export declare type RemoveEnvironmentFromProductInput = {
|
|
1515
|
-
/** The id of the record. */
|
|
1516
|
-
id: Scalars['String'];
|
|
1517
|
-
/** The id of relation. */
|
|
1518
|
-
relationId: Scalars['String'];
|
|
1519
|
-
};
|
|
1520
|
-
export declare type RemoveEnvironmentFromUsageMeasurementInput = {
|
|
1521
|
-
/** The id of the record. */
|
|
1522
|
-
id: Scalars['String'];
|
|
1523
|
-
/** The id of relation. */
|
|
1524
|
-
relationId: Scalars['String'];
|
|
1525
|
-
};
|
|
1526
|
-
export declare type RemoveFeatureFromPackageEntitlementInput = {
|
|
1527
|
-
/** The id of the record. */
|
|
1528
|
-
id: Scalars['String'];
|
|
1529
|
-
/** The id of relation. */
|
|
1530
|
-
relationId: Scalars['String'];
|
|
1531
|
-
};
|
|
1532
|
-
export declare type RemoveFeatureFromPromotionalEntitlementInput = {
|
|
1533
|
-
/** The id of the record. */
|
|
1534
|
-
id: Scalars['String'];
|
|
1535
|
-
/** The id of relation. */
|
|
1536
|
-
relationId: Scalars['String'];
|
|
1537
|
-
};
|
|
1538
|
-
export declare type RemoveFeatureFromUsageMeasurementInput = {
|
|
1539
|
-
/** The id of the record. */
|
|
1540
|
-
id: Scalars['String'];
|
|
1541
|
-
/** The id of relation. */
|
|
1542
|
-
relationId: Scalars['String'];
|
|
1543
|
-
};
|
|
1544
|
-
export declare type RemovePackageFromPackageEntitlementInput = {
|
|
1545
|
-
/** The id of the record. */
|
|
1546
|
-
id: Scalars['String'];
|
|
1547
|
-
/** The id of relation. */
|
|
1548
|
-
relationId: Scalars['String'];
|
|
1549
|
-
};
|
|
1550
|
-
export declare type RemovePackageFromPriceInput = {
|
|
1551
|
-
/** The id of the record. */
|
|
1552
|
-
id: Scalars['String'];
|
|
1553
|
-
/** The id of relation. */
|
|
1554
|
-
relationId: Scalars['String'];
|
|
1555
|
-
};
|
|
1556
|
-
export declare type RemovePlanFromCustomerSubscriptionInput = {
|
|
1557
|
-
/** The id of the record. */
|
|
1558
|
-
id: Scalars['String'];
|
|
1559
|
-
/** The id of relation. */
|
|
1560
|
-
relationId: Scalars['String'];
|
|
1561
|
-
};
|
|
1562
|
-
export declare type RemovePriceFromSubscriptionAddonInput = {
|
|
1563
|
-
/** The id of the record. */
|
|
1564
|
-
id: Scalars['String'];
|
|
1565
|
-
/** The id of relation. */
|
|
1566
|
-
relationId: Scalars['String'];
|
|
1567
|
-
};
|
|
1568
|
-
export declare type RemovePriceFromSubscriptionPriceInput = {
|
|
1569
|
-
/** The id of the record. */
|
|
1570
|
-
id: Scalars['String'];
|
|
1571
|
-
/** The id of relation. */
|
|
1572
|
-
relationId: Scalars['String'];
|
|
1573
|
-
};
|
|
1574
|
-
export declare type RemovePricesFromAddonInput = {
|
|
1575
|
-
/** The id of the record. */
|
|
1576
|
-
id: Scalars['String'];
|
|
1577
|
-
/** The ids of the relations. */
|
|
1578
|
-
relationIds: Array<Scalars['String']>;
|
|
1579
|
-
};
|
|
1580
|
-
export declare type RemovePricesFromCustomerSubscriptionInput = {
|
|
1581
|
-
/** The id of the record. */
|
|
1582
|
-
id: Scalars['String'];
|
|
1583
|
-
/** The ids of the relations. */
|
|
1584
|
-
relationIds: Array<Scalars['String']>;
|
|
1585
|
-
};
|
|
1586
|
-
export declare type RemovePricesFromPlanInput = {
|
|
1587
|
-
/** The id of the record. */
|
|
1588
|
-
id: Scalars['String'];
|
|
1589
|
-
/** The ids of the relations. */
|
|
1590
|
-
relationIds: Array<Scalars['String']>;
|
|
1591
|
-
};
|
|
1592
|
-
export declare type RemoveSubscriptionFromSubscriptionAddonInput = {
|
|
1593
|
-
/** The id of the record. */
|
|
1594
|
-
id: Scalars['String'];
|
|
1595
|
-
/** The id of relation. */
|
|
1596
|
-
relationId: Scalars['String'];
|
|
1597
|
-
};
|
|
1598
|
-
export declare type RemoveSubscriptionFromSubscriptionPriceInput = {
|
|
1599
|
-
/** The id of the record. */
|
|
1600
|
-
id: Scalars['String'];
|
|
1601
|
-
/** The id of relation. */
|
|
1602
|
-
relationId: Scalars['String'];
|
|
1603
|
-
};
|
|
1604
|
-
export declare type RemoveUserFromMemberInput = {
|
|
1605
|
-
/** The id of the record. */
|
|
1606
|
-
id: Scalars['String'];
|
|
1607
|
-
/** The id of relation. */
|
|
1608
|
-
relationId: Scalars['String'];
|
|
1609
|
-
};
|
|
1610
|
-
export declare type SetAccountOnEnvironmentInput = {
|
|
1611
|
-
/** The id of the record. */
|
|
1612
|
-
id: Scalars['String'];
|
|
1613
|
-
/** The id of relation. */
|
|
1614
|
-
relationId: Scalars['String'];
|
|
1615
|
-
};
|
|
1616
|
-
export declare type SetAccountOnFeatureInput = {
|
|
1617
|
-
/** The id of the record. */
|
|
1618
|
-
id: Scalars['String'];
|
|
1619
|
-
/** The id of relation. */
|
|
1620
|
-
relationId: Scalars['String'];
|
|
1621
|
-
};
|
|
1622
|
-
export declare type SetAccountOnHookInput = {
|
|
1623
|
-
/** The id of the record. */
|
|
1624
|
-
id: Scalars['String'];
|
|
1625
|
-
/** The id of relation. */
|
|
1626
|
-
relationId: Scalars['String'];
|
|
1627
|
-
};
|
|
1628
|
-
export declare type SetAccountOnIntegrationInput = {
|
|
1629
|
-
/** The id of the record. */
|
|
1630
|
-
id: Scalars['String'];
|
|
1631
|
-
/** The id of relation. */
|
|
1632
|
-
relationId: Scalars['String'];
|
|
1633
|
-
};
|
|
1634
|
-
export declare type SetAccountOnMemberInput = {
|
|
1635
|
-
/** The id of the record. */
|
|
1636
|
-
id: Scalars['String'];
|
|
1637
|
-
/** The id of relation. */
|
|
1638
|
-
relationId: Scalars['String'];
|
|
1639
|
-
};
|
|
1640
|
-
export declare type SetAddonOnSubscriptionAddonInput = {
|
|
1641
|
-
/** The id of the record. */
|
|
1642
|
-
id: Scalars['String'];
|
|
1643
|
-
/** The id of relation. */
|
|
1644
|
-
relationId: Scalars['String'];
|
|
1645
|
-
};
|
|
1646
|
-
export declare type SetAddonsOnCustomerSubscriptionInput = {
|
|
1647
|
-
/** The id of the record. */
|
|
1648
|
-
id: Scalars['String'];
|
|
1649
|
-
/** The ids of the relations. */
|
|
1650
|
-
relationIds: Array<Scalars['String']>;
|
|
1651
|
-
};
|
|
1652
|
-
export declare type SetApiKeysOnEnvironmentInput = {
|
|
1653
|
-
/** The id of the record. */
|
|
1654
|
-
id: Scalars['String'];
|
|
1655
|
-
/** The ids of the relations. */
|
|
1656
|
-
relationIds: Array<Scalars['String']>;
|
|
1657
|
-
};
|
|
1658
|
-
export declare type SetBasePlanOnPlanInput = {
|
|
1659
|
-
/** The id of the record. */
|
|
1660
|
-
id: Scalars['String'];
|
|
1661
|
-
/** The id of relation. */
|
|
1662
|
-
relationId: Scalars['String'];
|
|
1663
|
-
};
|
|
1664
|
-
export declare type SetCompatibleAddonsOnPlanInput = {
|
|
1665
|
-
/** The id of the record. */
|
|
1666
|
-
id: Scalars['String'];
|
|
1667
|
-
/** The ids of the relations. */
|
|
1668
|
-
relationIds: Array<Scalars['String']>;
|
|
1669
|
-
};
|
|
1670
|
-
export declare type SetCustomerOnCustomerSubscriptionInput = {
|
|
1671
|
-
/** The id of the record. */
|
|
1672
|
-
id: Scalars['String'];
|
|
1673
|
-
/** The id of relation. */
|
|
1674
|
-
relationId: Scalars['String'];
|
|
1675
|
-
};
|
|
1676
|
-
export declare type SetCustomerOnPromotionalEntitlementInput = {
|
|
1677
|
-
/** The id of the record. */
|
|
1678
|
-
id: Scalars['String'];
|
|
1679
|
-
/** The id of relation. */
|
|
1680
|
-
relationId: Scalars['String'];
|
|
1681
|
-
};
|
|
1682
|
-
export declare type SetCustomerOnUsageMeasurementInput = {
|
|
1683
|
-
/** The id of the record. */
|
|
1684
|
-
id: Scalars['String'];
|
|
1685
|
-
/** The id of relation. */
|
|
1686
|
-
relationId: Scalars['String'];
|
|
1687
|
-
};
|
|
1688
|
-
export declare type SetEnvironmentOnAddonInput = {
|
|
1689
|
-
/** The id of the record. */
|
|
1690
|
-
id: Scalars['String'];
|
|
1691
|
-
/** The id of relation. */
|
|
1692
|
-
relationId: Scalars['String'];
|
|
1693
|
-
};
|
|
1694
|
-
export declare type SetEnvironmentOnCustomerInput = {
|
|
1695
|
-
/** The id of the record. */
|
|
1696
|
-
id: Scalars['String'];
|
|
1697
|
-
/** The id of relation. */
|
|
1698
|
-
relationId: Scalars['String'];
|
|
1699
|
-
};
|
|
1700
|
-
export declare type SetEnvironmentOnCustomerSubscriptionInput = {
|
|
1701
|
-
/** The id of the record. */
|
|
1702
|
-
id: Scalars['String'];
|
|
1703
|
-
/** The id of relation. */
|
|
1704
|
-
relationId: Scalars['String'];
|
|
1705
|
-
};
|
|
1706
|
-
export declare type SetEnvironmentOnEventLogInput = {
|
|
1707
|
-
/** The id of the record. */
|
|
1708
|
-
id: Scalars['String'];
|
|
1709
|
-
/** The id of relation. */
|
|
1710
|
-
relationId: Scalars['String'];
|
|
1711
|
-
};
|
|
1712
|
-
export declare type SetEnvironmentOnFeatureInput = {
|
|
1713
|
-
/** The id of the record. */
|
|
1714
|
-
id: Scalars['String'];
|
|
1715
|
-
/** The id of relation. */
|
|
1716
|
-
relationId: Scalars['String'];
|
|
1717
|
-
};
|
|
1718
|
-
export declare type SetEnvironmentOnHookInput = {
|
|
1719
|
-
/** The id of the record. */
|
|
1720
|
-
id: Scalars['String'];
|
|
1721
|
-
/** The id of relation. */
|
|
1722
|
-
relationId: Scalars['String'];
|
|
1723
|
-
};
|
|
1724
|
-
export declare type SetEnvironmentOnIntegrationInput = {
|
|
1725
|
-
/** The id of the record. */
|
|
1726
|
-
id: Scalars['String'];
|
|
1727
|
-
/** The id of relation. */
|
|
1728
|
-
relationId: Scalars['String'];
|
|
1729
|
-
};
|
|
1730
|
-
export declare type SetEnvironmentOnPlanInput = {
|
|
1731
|
-
/** The id of the record. */
|
|
1732
|
-
id: Scalars['String'];
|
|
1733
|
-
/** The id of relation. */
|
|
1734
|
-
relationId: Scalars['String'];
|
|
1735
|
-
};
|
|
1736
|
-
export declare type SetEnvironmentOnProductInput = {
|
|
1737
|
-
/** The id of the record. */
|
|
1738
|
-
id: Scalars['String'];
|
|
1739
|
-
/** The id of relation. */
|
|
1740
|
-
relationId: Scalars['String'];
|
|
1741
|
-
};
|
|
1742
|
-
export declare type SetEnvironmentOnUsageMeasurementInput = {
|
|
1743
|
-
/** The id of the record. */
|
|
1744
|
-
id: Scalars['String'];
|
|
1745
|
-
/** The id of relation. */
|
|
1746
|
-
relationId: Scalars['String'];
|
|
1747
|
-
};
|
|
1748
|
-
export declare type SetFeatureOnPackageEntitlementInput = {
|
|
1749
|
-
/** The id of the record. */
|
|
1750
|
-
id: Scalars['String'];
|
|
1751
|
-
/** The id of relation. */
|
|
1752
|
-
relationId: Scalars['String'];
|
|
1753
|
-
};
|
|
1754
|
-
export declare type SetFeatureOnPromotionalEntitlementInput = {
|
|
1755
|
-
/** The id of the record. */
|
|
1756
|
-
id: Scalars['String'];
|
|
1757
|
-
/** The id of relation. */
|
|
1758
|
-
relationId: Scalars['String'];
|
|
1759
|
-
};
|
|
1760
|
-
export declare type SetFeatureOnUsageMeasurementInput = {
|
|
1761
|
-
/** The id of the record. */
|
|
1762
|
-
id: Scalars['String'];
|
|
1763
|
-
/** The id of relation. */
|
|
1764
|
-
relationId: Scalars['String'];
|
|
1765
|
-
};
|
|
1766
|
-
export declare type SetPackageOnPackageEntitlementInput = {
|
|
1767
|
-
/** The id of the record. */
|
|
1768
|
-
id: Scalars['String'];
|
|
1769
|
-
/** The id of relation. */
|
|
1770
|
-
relationId: Scalars['String'];
|
|
1771
|
-
};
|
|
1772
|
-
export declare type SetPackageOnPriceInput = {
|
|
1773
|
-
/** The id of the record. */
|
|
1774
|
-
id: Scalars['String'];
|
|
1775
|
-
/** The id of relation. */
|
|
1776
|
-
relationId: Scalars['String'];
|
|
1777
|
-
};
|
|
1778
|
-
export declare type SetPlanOnCustomerSubscriptionInput = {
|
|
1779
|
-
/** The id of the record. */
|
|
1780
|
-
id: Scalars['String'];
|
|
1781
|
-
/** The id of relation. */
|
|
1782
|
-
relationId: Scalars['String'];
|
|
1783
|
-
};
|
|
1784
|
-
export declare type SetPriceOnSubscriptionAddonInput = {
|
|
1785
|
-
/** The id of the record. */
|
|
1786
|
-
id: Scalars['String'];
|
|
1787
|
-
/** The id of relation. */
|
|
1788
|
-
relationId: Scalars['String'];
|
|
1789
|
-
};
|
|
1790
|
-
export declare type SetPriceOnSubscriptionPriceInput = {
|
|
1791
|
-
/** The id of the record. */
|
|
1792
|
-
id: Scalars['String'];
|
|
1793
|
-
/** The id of relation. */
|
|
1794
|
-
relationId: Scalars['String'];
|
|
1795
|
-
};
|
|
1796
|
-
export declare type SetPricesOnAddonInput = {
|
|
1797
|
-
/** The id of the record. */
|
|
1798
|
-
id: Scalars['String'];
|
|
1799
|
-
/** The ids of the relations. */
|
|
1800
|
-
relationIds: Array<Scalars['String']>;
|
|
1801
|
-
};
|
|
1802
|
-
export declare type SetPricesOnCustomerSubscriptionInput = {
|
|
1803
|
-
/** The id of the record. */
|
|
1804
|
-
id: Scalars['String'];
|
|
1805
|
-
/** The ids of the relations. */
|
|
1806
|
-
relationIds: Array<Scalars['String']>;
|
|
1807
|
-
};
|
|
1808
|
-
export declare type SetPricesOnPlanInput = {
|
|
1809
|
-
/** The id of the record. */
|
|
1810
|
-
id: Scalars['String'];
|
|
1811
|
-
/** The ids of the relations. */
|
|
1812
|
-
relationIds: Array<Scalars['String']>;
|
|
1813
|
-
};
|
|
1814
|
-
export declare type SetProductOnAddonInput = {
|
|
1815
|
-
/** The id of the record. */
|
|
1816
|
-
id: Scalars['String'];
|
|
1817
|
-
/** The id of relation. */
|
|
1818
|
-
relationId: Scalars['String'];
|
|
1819
|
-
};
|
|
1820
|
-
export declare type SetProductOnPlanInput = {
|
|
1821
|
-
/** The id of the record. */
|
|
1822
|
-
id: Scalars['String'];
|
|
1823
|
-
/** The id of relation. */
|
|
1824
|
-
relationId: Scalars['String'];
|
|
1825
|
-
};
|
|
1826
|
-
export declare type SetSubscriptionOnSubscriptionAddonInput = {
|
|
1827
|
-
/** The id of the record. */
|
|
1828
|
-
id: Scalars['String'];
|
|
1829
|
-
/** The id of relation. */
|
|
1830
|
-
relationId: Scalars['String'];
|
|
1831
|
-
};
|
|
1832
|
-
export declare type SetSubscriptionOnSubscriptionPriceInput = {
|
|
1833
|
-
/** The id of the record. */
|
|
1834
|
-
id: Scalars['String'];
|
|
1835
|
-
/** The id of relation. */
|
|
1836
|
-
relationId: Scalars['String'];
|
|
1837
|
-
};
|
|
1838
|
-
export declare type SetSubscriptionsOnCustomerInput = {
|
|
1839
|
-
/** The id of the record. */
|
|
1840
|
-
id: Scalars['String'];
|
|
1841
|
-
/** The ids of the relations. */
|
|
1842
|
-
relationIds: Array<Scalars['String']>;
|
|
1843
|
-
};
|
|
1844
|
-
export declare type SetUserOnMemberInput = {
|
|
1845
|
-
/** The id of the record. */
|
|
1846
|
-
id: Scalars['String'];
|
|
1847
|
-
/** The id of relation. */
|
|
1848
|
-
relationId: Scalars['String'];
|
|
1849
|
-
};
|
|
1850
|
-
/** Sort Directions */
|
|
1851
|
-
export declare enum SortDirection {
|
|
1852
|
-
Asc = "ASC",
|
|
1853
|
-
Desc = "DESC"
|
|
1854
|
-
}
|
|
1855
|
-
/** Sort Nulls Options */
|
|
1856
|
-
export declare enum SortNulls {
|
|
1857
|
-
NullsFirst = "NULLS_FIRST",
|
|
1858
|
-
NullsLast = "NULLS_LAST"
|
|
1859
|
-
}
|
|
1860
|
-
export declare type StringFieldComparison = {
|
|
1861
|
-
eq?: Maybe<Scalars['String']>;
|
|
1862
|
-
gt?: Maybe<Scalars['String']>;
|
|
1863
|
-
gte?: Maybe<Scalars['String']>;
|
|
1864
|
-
iLike?: Maybe<Scalars['String']>;
|
|
1865
|
-
in?: Maybe<Array<Scalars['String']>>;
|
|
1866
|
-
is?: Maybe<Scalars['Boolean']>;
|
|
1867
|
-
isNot?: Maybe<Scalars['Boolean']>;
|
|
1868
|
-
like?: Maybe<Scalars['String']>;
|
|
1869
|
-
lt?: Maybe<Scalars['String']>;
|
|
1870
|
-
lte?: Maybe<Scalars['String']>;
|
|
1871
|
-
neq?: Maybe<Scalars['String']>;
|
|
1872
|
-
notILike?: Maybe<Scalars['String']>;
|
|
1873
|
-
notIn?: Maybe<Array<Scalars['String']>>;
|
|
1874
|
-
notLike?: Maybe<Scalars['String']>;
|
|
1875
|
-
};
|
|
1876
|
-
export declare type StripeCredentialsInput = {
|
|
1877
|
-
accountId?: Maybe<Scalars['String']>;
|
|
1878
|
-
authorizationCode: Scalars['String'];
|
|
1879
|
-
isTestMode: Scalars['Boolean'];
|
|
1156
|
+
export declare type StripeCredentialsInput = {
|
|
1157
|
+
accountId?: Maybe<Scalars['String']>;
|
|
1158
|
+
authorizationCode: Scalars['String'];
|
|
1159
|
+
isTestMode: Scalars['Boolean'];
|
|
1880
1160
|
};
|
|
1881
1161
|
export declare type SubscriptionAddonFilter = {
|
|
1882
1162
|
addon?: Maybe<SubscriptionAddonFilterAddonFilter>;
|
|
@@ -2087,48 +1367,6 @@ export declare type UpdateIntegrationInput = {
|
|
|
2087
1367
|
vendorIdentifier: VendorIdentifier;
|
|
2088
1368
|
zuoraCredentials?: Maybe<ZuoraCredentialsInput>;
|
|
2089
1369
|
};
|
|
2090
|
-
export declare type UpdateManyCustomersInput = {
|
|
2091
|
-
/** Filter used to find fields to update */
|
|
2092
|
-
filter: CustomerUpdateFilter;
|
|
2093
|
-
/** The update to apply to all records found using the filter */
|
|
2094
|
-
update: UpdateCustomer;
|
|
2095
|
-
};
|
|
2096
|
-
export declare type UpdateManyEnvironmentsInput = {
|
|
2097
|
-
/** Filter used to find fields to update */
|
|
2098
|
-
filter: EnvironmentUpdateFilter;
|
|
2099
|
-
/** The update to apply to all records found using the filter */
|
|
2100
|
-
update: UpdateEnvironment;
|
|
2101
|
-
};
|
|
2102
|
-
export declare type UpdateManyHooksInput = {
|
|
2103
|
-
/** Filter used to find fields to update */
|
|
2104
|
-
filter: HookUpdateFilter;
|
|
2105
|
-
/** The update to apply to all records found using the filter */
|
|
2106
|
-
update: UpdateHook;
|
|
2107
|
-
};
|
|
2108
|
-
export declare type UpdateManyIntegrationsInput = {
|
|
2109
|
-
/** Filter used to find fields to update */
|
|
2110
|
-
filter: IntegrationUpdateFilter;
|
|
2111
|
-
/** The update to apply to all records found using the filter */
|
|
2112
|
-
update: UpdateIntegrationInput;
|
|
2113
|
-
};
|
|
2114
|
-
export declare type UpdateManyPackageEntitlementsInput = {
|
|
2115
|
-
/** Filter used to find fields to update */
|
|
2116
|
-
filter: PackageEntitlementUpdateFilter;
|
|
2117
|
-
/** The update to apply to all records found using the filter */
|
|
2118
|
-
update: PackageEntitlementUpdateInput;
|
|
2119
|
-
};
|
|
2120
|
-
export declare type UpdateManyProductsInput = {
|
|
2121
|
-
/** Filter used to find fields to update */
|
|
2122
|
-
filter: ProductUpdateFilter;
|
|
2123
|
-
/** The update to apply to all records found using the filter */
|
|
2124
|
-
update: ProductUpdateInput;
|
|
2125
|
-
};
|
|
2126
|
-
export declare type UpdateManyPromotionalEntitlementsInput = {
|
|
2127
|
-
/** Filter used to find fields to update */
|
|
2128
|
-
filter: PromotionalEntitlementUpdateFilter;
|
|
2129
|
-
/** The update to apply to all records found using the filter */
|
|
2130
|
-
update: PromotionalEntitlementUpdateInput;
|
|
2131
|
-
};
|
|
2132
1370
|
export declare type UpdateOneCustomerInput = {
|
|
2133
1371
|
/** The id of the record to update */
|
|
2134
1372
|
id: Scalars['String'];
|
|
@@ -2286,15 +1524,6 @@ export declare type GetEnvironmentQuery = {
|
|
|
2286
1524
|
__typename?: 'Query';
|
|
2287
1525
|
currentEnvironment: string;
|
|
2288
1526
|
};
|
|
2289
|
-
export declare type EntitlementQueryVariables = Exact<{
|
|
2290
|
-
query: FetchEntitlementQuery;
|
|
2291
|
-
}>;
|
|
2292
|
-
export declare type EntitlementQuery = {
|
|
2293
|
-
__typename?: 'Query';
|
|
2294
|
-
entitlement: {
|
|
2295
|
-
__typename?: 'Entitlement';
|
|
2296
|
-
} & EntitlementFragment;
|
|
2297
|
-
};
|
|
2298
1527
|
export declare type CachedEntitlementsQueryVariables = Exact<{
|
|
2299
1528
|
query: FetchEntitlementsQuery;
|
|
2300
1529
|
}>;
|