@stigg/typescript 0.1.0-beta.10 → 0.1.0-beta.14
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/CHANGELOG.md +32 -0
- package/package.json +1 -1
- package/resources/v1/addons/addons.d.mts +167 -193
- package/resources/v1/addons/addons.d.mts.map +1 -1
- package/resources/v1/addons/addons.d.ts +167 -193
- package/resources/v1/addons/addons.d.ts.map +1 -1
- package/resources/v1/addons/addons.js +1 -4
- package/resources/v1/addons/addons.js.map +1 -1
- package/resources/v1/addons/addons.mjs +1 -4
- package/resources/v1/addons/addons.mjs.map +1 -1
- package/resources/v1/addons/index.d.mts +1 -1
- package/resources/v1/addons/index.d.mts.map +1 -1
- package/resources/v1/addons/index.d.ts +1 -1
- package/resources/v1/addons/index.d.ts.map +1 -1
- package/resources/v1/customers/customers.d.mts +5 -5
- package/resources/v1/customers/customers.d.mts.map +1 -1
- package/resources/v1/customers/customers.d.ts +5 -5
- package/resources/v1/customers/customers.d.ts.map +1 -1
- package/resources/v1/customers/customers.js.map +1 -1
- package/resources/v1/customers/customers.mjs.map +1 -1
- package/resources/v1/customers/integrations.d.mts +3 -3
- package/resources/v1/customers/integrations.d.mts.map +1 -1
- package/resources/v1/customers/integrations.d.ts +3 -3
- package/resources/v1/customers/integrations.d.ts.map +1 -1
- package/resources/v1/customers/payment-method.d.mts +1 -1
- package/resources/v1/customers/payment-method.d.mts.map +1 -1
- package/resources/v1/customers/payment-method.d.ts +1 -1
- package/resources/v1/customers/payment-method.d.ts.map +1 -1
- package/resources/v1/index.d.mts +2 -2
- package/resources/v1/index.d.mts.map +1 -1
- package/resources/v1/index.d.ts +2 -2
- package/resources/v1/index.d.ts.map +1 -1
- package/resources/v1/index.js.map +1 -1
- package/resources/v1/index.mjs.map +1 -1
- package/resources/v1/plans/index.d.mts +1 -1
- package/resources/v1/plans/index.d.mts.map +1 -1
- package/resources/v1/plans/index.d.ts +1 -1
- package/resources/v1/plans/index.d.ts.map +1 -1
- package/resources/v1/plans/index.js.map +1 -1
- package/resources/v1/plans/index.mjs.map +1 -1
- package/resources/v1/plans/plans.d.mts +333 -6
- package/resources/v1/plans/plans.d.mts.map +1 -1
- package/resources/v1/plans/plans.d.ts +333 -6
- package/resources/v1/plans/plans.d.ts.map +1 -1
- package/resources/v1/plans/plans.js.map +1 -1
- package/resources/v1/plans/plans.mjs.map +1 -1
- package/resources/v1/v1.d.mts +4 -4
- package/resources/v1/v1.d.mts.map +1 -1
- package/resources/v1/v1.d.ts +4 -4
- package/resources/v1/v1.d.ts.map +1 -1
- package/resources/v1/v1.js.map +1 -1
- package/resources/v1/v1.mjs.map +1 -1
- package/resources/v1-beta/customers/customers.d.mts +2 -2
- package/resources/v1-beta/customers/customers.d.mts.map +1 -1
- package/resources/v1-beta/customers/customers.d.ts +2 -2
- package/resources/v1-beta/customers/customers.d.ts.map +1 -1
- package/resources/v1-beta/customers/entities.d.mts +45 -34
- package/resources/v1-beta/customers/entities.d.mts.map +1 -1
- package/resources/v1-beta/customers/entities.d.ts +45 -34
- package/resources/v1-beta/customers/entities.d.ts.map +1 -1
- package/resources/v1-beta/customers/entities.js +2 -2
- package/resources/v1-beta/customers/entities.mjs +2 -2
- package/resources/v1-beta/customers/index.d.mts +1 -1
- package/resources/v1-beta/customers/index.d.mts.map +1 -1
- package/resources/v1-beta/customers/index.d.ts +1 -1
- package/resources/v1-beta/customers/index.d.ts.map +1 -1
- package/src/resources/v1/addons/addons.ts +458 -487
- package/src/resources/v1/addons/index.ts +2 -2
- package/src/resources/v1/customers/customers.ts +15 -5
- package/src/resources/v1/customers/integrations.ts +8 -2
- package/src/resources/v1/customers/payment-method.ts +3 -1
- package/src/resources/v1/index.ts +6 -2
- package/src/resources/v1/plans/index.ts +4 -0
- package/src/resources/v1/plans/plans.ts +1100 -8
- package/src/resources/v1/v1.ts +12 -4
- package/src/resources/v1-beta/customers/customers.ts +4 -4
- package/src/resources/v1-beta/customers/entities.ts +50 -38
- package/src/resources/v1-beta/customers/index.ts +2 -2
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
export {
|
|
4
4
|
Addons,
|
|
5
5
|
type Addon,
|
|
6
|
-
type ChargeList,
|
|
7
6
|
type AddonListResponse,
|
|
7
|
+
type AddonListChargesResponse,
|
|
8
8
|
type AddonPublishResponse,
|
|
9
9
|
type AddonRemoveDraftResponse,
|
|
10
10
|
type AddonCreateParams,
|
|
@@ -13,7 +13,7 @@ export {
|
|
|
13
13
|
type AddonListChargesParams,
|
|
14
14
|
type AddonPublishParams,
|
|
15
15
|
type AddonListResponsesMyCursorIDPage,
|
|
16
|
-
type
|
|
16
|
+
type AddonListChargesResponsesMyCursorIDPage,
|
|
17
17
|
} from './addons';
|
|
18
18
|
export {
|
|
19
19
|
Entitlements,
|
|
@@ -189,7 +189,9 @@ export namespace CustomerIntegrationResponse {
|
|
|
189
189
|
| 'SALESFORCE'
|
|
190
190
|
| 'BIG_QUERY'
|
|
191
191
|
| 'OPEN_FGA'
|
|
192
|
-
| 'APP_STORE'
|
|
192
|
+
| 'APP_STORE'
|
|
193
|
+
| 'RECEIVED'
|
|
194
|
+
| 'PREQUEL';
|
|
193
195
|
|
|
194
196
|
/**
|
|
195
197
|
* Price billing sync revision data containing billing ID, link URL, and price
|
|
@@ -517,7 +519,9 @@ export namespace CustomerResponse {
|
|
|
517
519
|
| 'SALESFORCE'
|
|
518
520
|
| 'BIG_QUERY'
|
|
519
521
|
| 'OPEN_FGA'
|
|
520
|
-
| 'APP_STORE'
|
|
522
|
+
| 'APP_STORE'
|
|
523
|
+
| 'RECEIVED'
|
|
524
|
+
| 'PREQUEL';
|
|
521
525
|
}
|
|
522
526
|
|
|
523
527
|
/**
|
|
@@ -1099,7 +1103,9 @@ export namespace CustomerListResponse {
|
|
|
1099
1103
|
| 'SALESFORCE'
|
|
1100
1104
|
| 'BIG_QUERY'
|
|
1101
1105
|
| 'OPEN_FGA'
|
|
1102
|
-
| 'APP_STORE'
|
|
1106
|
+
| 'APP_STORE'
|
|
1107
|
+
| 'RECEIVED'
|
|
1108
|
+
| 'PREQUEL';
|
|
1103
1109
|
}
|
|
1104
1110
|
|
|
1105
1111
|
/**
|
|
@@ -2050,7 +2056,9 @@ export namespace CustomerUpdateParams {
|
|
|
2050
2056
|
| 'SALESFORCE'
|
|
2051
2057
|
| 'BIG_QUERY'
|
|
2052
2058
|
| 'OPEN_FGA'
|
|
2053
|
-
| 'APP_STORE'
|
|
2059
|
+
| 'APP_STORE'
|
|
2060
|
+
| 'RECEIVED'
|
|
2061
|
+
| 'PREQUEL';
|
|
2054
2062
|
}
|
|
2055
2063
|
|
|
2056
2064
|
/**
|
|
@@ -2744,7 +2752,9 @@ export namespace CustomerProvisionParams {
|
|
|
2744
2752
|
| 'SALESFORCE'
|
|
2745
2753
|
| 'BIG_QUERY'
|
|
2746
2754
|
| 'OPEN_FGA'
|
|
2747
|
-
| 'APP_STORE'
|
|
2755
|
+
| 'APP_STORE'
|
|
2756
|
+
| 'RECEIVED'
|
|
2757
|
+
| 'PREQUEL';
|
|
2748
2758
|
}
|
|
2749
2759
|
|
|
2750
2760
|
/**
|
|
@@ -106,7 +106,9 @@ export interface IntegrationListResponse {
|
|
|
106
106
|
| 'SALESFORCE'
|
|
107
107
|
| 'BIG_QUERY'
|
|
108
108
|
| 'OPEN_FGA'
|
|
109
|
-
| 'APP_STORE'
|
|
109
|
+
| 'APP_STORE'
|
|
110
|
+
| 'RECEIVED'
|
|
111
|
+
| 'PREQUEL';
|
|
110
112
|
|
|
111
113
|
/**
|
|
112
114
|
* Price billing sync revision data containing billing ID, link URL, and price
|
|
@@ -202,6 +204,8 @@ export interface IntegrationListParams extends MyCursorIDPageParams {
|
|
|
202
204
|
| 'BIG_QUERY'
|
|
203
205
|
| 'OPEN_FGA'
|
|
204
206
|
| 'APP_STORE'
|
|
207
|
+
| 'RECEIVED'
|
|
208
|
+
| 'PREQUEL'
|
|
205
209
|
>;
|
|
206
210
|
}
|
|
207
211
|
|
|
@@ -229,7 +233,9 @@ export interface IntegrationLinkParams {
|
|
|
229
233
|
| 'SALESFORCE'
|
|
230
234
|
| 'BIG_QUERY'
|
|
231
235
|
| 'OPEN_FGA'
|
|
232
|
-
| 'APP_STORE'
|
|
236
|
+
| 'APP_STORE'
|
|
237
|
+
| 'RECEIVED'
|
|
238
|
+
| 'PREQUEL';
|
|
233
239
|
}
|
|
234
240
|
|
|
235
241
|
export interface IntegrationUnlinkParams {
|
|
@@ -3,8 +3,8 @@
|
|
|
3
3
|
export {
|
|
4
4
|
Addons,
|
|
5
5
|
type Addon,
|
|
6
|
-
type ChargeList,
|
|
7
6
|
type AddonListResponse,
|
|
7
|
+
type AddonListChargesResponse,
|
|
8
8
|
type AddonPublishResponse,
|
|
9
9
|
type AddonRemoveDraftResponse,
|
|
10
10
|
type AddonCreateParams,
|
|
@@ -13,7 +13,7 @@ export {
|
|
|
13
13
|
type AddonListChargesParams,
|
|
14
14
|
type AddonPublishParams,
|
|
15
15
|
type AddonListResponsesMyCursorIDPage,
|
|
16
|
-
type
|
|
16
|
+
type AddonListChargesResponsesMyCursorIDPage,
|
|
17
17
|
} from './addons/index';
|
|
18
18
|
export {
|
|
19
19
|
Coupons,
|
|
@@ -67,6 +67,8 @@ export {
|
|
|
67
67
|
Plans,
|
|
68
68
|
type Plan,
|
|
69
69
|
type PlanListResponse,
|
|
70
|
+
type PlanListChargesResponse,
|
|
71
|
+
type PlanListOverageChargesResponse,
|
|
70
72
|
type PlanPublishResponse,
|
|
71
73
|
type PlanRemoveDraftResponse,
|
|
72
74
|
type PlanCreateParams,
|
|
@@ -76,6 +78,8 @@ export {
|
|
|
76
78
|
type PlanListOverageChargesParams,
|
|
77
79
|
type PlanPublishParams,
|
|
78
80
|
type PlanListResponsesMyCursorIDPage,
|
|
81
|
+
type PlanListChargesResponsesMyCursorIDPage,
|
|
82
|
+
type PlanListOverageChargesResponsesMyCursorIDPage,
|
|
79
83
|
} from './plans/index';
|
|
80
84
|
export {
|
|
81
85
|
Products,
|
|
@@ -13,6 +13,8 @@ export {
|
|
|
13
13
|
Plans,
|
|
14
14
|
type Plan,
|
|
15
15
|
type PlanListResponse,
|
|
16
|
+
type PlanListChargesResponse,
|
|
17
|
+
type PlanListOverageChargesResponse,
|
|
16
18
|
type PlanPublishResponse,
|
|
17
19
|
type PlanRemoveDraftResponse,
|
|
18
20
|
type PlanCreateParams,
|
|
@@ -22,4 +24,6 @@ export {
|
|
|
22
24
|
type PlanListOverageChargesParams,
|
|
23
25
|
type PlanPublishParams,
|
|
24
26
|
type PlanListResponsesMyCursorIDPage,
|
|
27
|
+
type PlanListChargesResponsesMyCursorIDPage,
|
|
28
|
+
type PlanListOverageChargesResponsesMyCursorIDPage,
|
|
25
29
|
} from './plans';
|