orb-billing 1.34.1 → 1.35.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/CHANGELOG.md +32 -0
- package/README.md +1 -1
- package/_shims/index.d.ts +1 -1
- package/_shims/registry.d.ts +1 -1
- package/_shims/registry.d.ts.map +1 -1
- package/core.d.ts +13 -12
- package/core.d.ts.map +1 -1
- package/core.js +6 -4
- package/core.js.map +1 -1
- package/core.mjs +6 -4
- package/core.mjs.map +1 -1
- package/index.d.mts +2 -0
- package/index.d.ts +2 -0
- package/index.d.ts.map +1 -1
- package/index.js +3 -1
- package/index.js.map +1 -1
- package/index.mjs +3 -1
- package/index.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/beta/beta.d.ts +12 -0
- package/resources/beta/beta.d.ts.map +1 -0
- package/resources/beta/beta.js +40 -0
- package/resources/beta/beta.js.map +1 -0
- package/resources/beta/beta.mjs +13 -0
- package/resources/beta/beta.mjs.map +1 -0
- package/resources/beta/index.d.ts +3 -0
- package/resources/beta/index.d.ts.map +1 -0
- package/resources/beta/index.js +9 -0
- package/resources/beta/index.js.map +1 -0
- package/resources/beta/index.mjs +4 -0
- package/resources/beta/index.mjs.map +1 -0
- package/resources/beta/price.d.ts +82 -0
- package/resources/beta/price.d.ts.map +1 -0
- package/resources/beta/price.js +37 -0
- package/resources/beta/price.js.map +1 -0
- package/resources/beta/price.mjs +33 -0
- package/resources/beta/price.mjs.map +1 -0
- package/resources/index.d.ts +1 -0
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +3 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +1 -0
- package/resources/index.mjs.map +1 -1
- package/resources/prices/prices.d.ts +1 -103
- package/resources/prices/prices.d.ts.map +1 -1
- package/resources/prices/prices.js.map +1 -1
- package/resources/prices/prices.mjs.map +1 -1
- package/resources/subscriptions.d.ts +2 -210
- package/resources/subscriptions.d.ts.map +1 -1
- package/resources/subscriptions.js.map +1 -1
- package/resources/subscriptions.mjs.map +1 -1
- package/src/_shims/index.d.ts +1 -1
- package/src/_shims/node-runtime.ts +1 -1
- package/src/_shims/registry.ts +1 -1
- package/src/_shims/web-runtime.ts +1 -1
- package/src/core.ts +21 -21
- package/src/index.ts +4 -1
- package/src/lib/.keep +4 -0
- package/src/resources/beta/beta.ts +15 -0
- package/src/resources/beta/index.ts +4 -0
- package/src/resources/beta/price.ts +101 -0
- package/src/resources/index.ts +1 -0
- package/src/resources/prices/prices.ts +0 -154
- package/src/resources/subscriptions.ts +0 -264
- package/src/uploads.ts +2 -2
- package/src/version.ts +1 -1
- package/uploads.d.ts +2 -2
- package/uploads.d.ts.map +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
|
@@ -2121,8 +2121,6 @@ export interface SubscriptionCreateParams {
|
|
|
2121
2121
|
| SubscriptionCreateParams.OverrideBpsPrice
|
|
2122
2122
|
| SubscriptionCreateParams.OverrideBulkBpsPrice
|
|
2123
2123
|
| SubscriptionCreateParams.OverrideBulkPrice
|
|
2124
|
-
| SubscriptionCreateParams.OverrideTestRatingFunctionPrice
|
|
2125
|
-
| SubscriptionCreateParams.OverrideFivetranExamplePrice
|
|
2126
2124
|
| SubscriptionCreateParams.OverrideThresholdTotalAmountPrice
|
|
2127
2125
|
| SubscriptionCreateParams.OverrideTieredPackagePrice
|
|
2128
2126
|
| SubscriptionCreateParams.OverrideTieredWithMinimumPrice
|
|
@@ -2840,136 +2838,6 @@ export namespace SubscriptionCreateParams {
|
|
|
2840
2838
|
}
|
|
2841
2839
|
}
|
|
2842
2840
|
|
|
2843
|
-
export interface OverrideTestRatingFunctionPrice {
|
|
2844
|
-
id: string;
|
|
2845
|
-
|
|
2846
|
-
model_type: 'test_rating_function';
|
|
2847
|
-
|
|
2848
|
-
test_rating_function_config: Record<string, unknown>;
|
|
2849
|
-
|
|
2850
|
-
/**
|
|
2851
|
-
* The subscription's override discount for the plan.
|
|
2852
|
-
*/
|
|
2853
|
-
discount?: OverrideTestRatingFunctionPrice.Discount | null;
|
|
2854
|
-
|
|
2855
|
-
/**
|
|
2856
|
-
* The starting quantity of the price, if the price is a fixed price.
|
|
2857
|
-
*/
|
|
2858
|
-
fixed_price_quantity?: number | null;
|
|
2859
|
-
|
|
2860
|
-
/**
|
|
2861
|
-
* The subscription's override maximum amount for the plan.
|
|
2862
|
-
*/
|
|
2863
|
-
maximum_amount?: string | null;
|
|
2864
|
-
|
|
2865
|
-
/**
|
|
2866
|
-
* The subscription's override minimum amount for the plan.
|
|
2867
|
-
*/
|
|
2868
|
-
minimum_amount?: string | null;
|
|
2869
|
-
}
|
|
2870
|
-
|
|
2871
|
-
export namespace OverrideTestRatingFunctionPrice {
|
|
2872
|
-
/**
|
|
2873
|
-
* The subscription's override discount for the plan.
|
|
2874
|
-
*/
|
|
2875
|
-
export interface Discount {
|
|
2876
|
-
discount_type: 'percentage' | 'trial' | 'usage' | 'amount';
|
|
2877
|
-
|
|
2878
|
-
/**
|
|
2879
|
-
* Only available if discount_type is `amount`.
|
|
2880
|
-
*/
|
|
2881
|
-
amount_discount?: string | null;
|
|
2882
|
-
|
|
2883
|
-
/**
|
|
2884
|
-
* List of price_ids that this discount applies to. For plan/plan phase discounts,
|
|
2885
|
-
* this can be a subset of prices.
|
|
2886
|
-
*/
|
|
2887
|
-
applies_to_price_ids?: Array<string> | null;
|
|
2888
|
-
|
|
2889
|
-
/**
|
|
2890
|
-
* Only available if discount_type is `percentage`. This is a number between 0
|
|
2891
|
-
* and 1.
|
|
2892
|
-
*/
|
|
2893
|
-
percentage_discount?: number | null;
|
|
2894
|
-
|
|
2895
|
-
/**
|
|
2896
|
-
* Only available if discount_type is `trial`
|
|
2897
|
-
*/
|
|
2898
|
-
trial_amount_discount?: string | null;
|
|
2899
|
-
|
|
2900
|
-
/**
|
|
2901
|
-
* Only available if discount_type is `usage`. Number of usage units that this
|
|
2902
|
-
* discount is for
|
|
2903
|
-
*/
|
|
2904
|
-
usage_discount?: number | null;
|
|
2905
|
-
}
|
|
2906
|
-
}
|
|
2907
|
-
|
|
2908
|
-
export interface OverrideFivetranExamplePrice {
|
|
2909
|
-
id: string;
|
|
2910
|
-
|
|
2911
|
-
fivetran_example_config: Record<string, unknown>;
|
|
2912
|
-
|
|
2913
|
-
model_type: 'fivetran_example';
|
|
2914
|
-
|
|
2915
|
-
/**
|
|
2916
|
-
* The subscription's override discount for the plan.
|
|
2917
|
-
*/
|
|
2918
|
-
discount?: OverrideFivetranExamplePrice.Discount | null;
|
|
2919
|
-
|
|
2920
|
-
/**
|
|
2921
|
-
* The starting quantity of the price, if the price is a fixed price.
|
|
2922
|
-
*/
|
|
2923
|
-
fixed_price_quantity?: number | null;
|
|
2924
|
-
|
|
2925
|
-
/**
|
|
2926
|
-
* The subscription's override maximum amount for the plan.
|
|
2927
|
-
*/
|
|
2928
|
-
maximum_amount?: string | null;
|
|
2929
|
-
|
|
2930
|
-
/**
|
|
2931
|
-
* The subscription's override minimum amount for the plan.
|
|
2932
|
-
*/
|
|
2933
|
-
minimum_amount?: string | null;
|
|
2934
|
-
}
|
|
2935
|
-
|
|
2936
|
-
export namespace OverrideFivetranExamplePrice {
|
|
2937
|
-
/**
|
|
2938
|
-
* The subscription's override discount for the plan.
|
|
2939
|
-
*/
|
|
2940
|
-
export interface Discount {
|
|
2941
|
-
discount_type: 'percentage' | 'trial' | 'usage' | 'amount';
|
|
2942
|
-
|
|
2943
|
-
/**
|
|
2944
|
-
* Only available if discount_type is `amount`.
|
|
2945
|
-
*/
|
|
2946
|
-
amount_discount?: string | null;
|
|
2947
|
-
|
|
2948
|
-
/**
|
|
2949
|
-
* List of price_ids that this discount applies to. For plan/plan phase discounts,
|
|
2950
|
-
* this can be a subset of prices.
|
|
2951
|
-
*/
|
|
2952
|
-
applies_to_price_ids?: Array<string> | null;
|
|
2953
|
-
|
|
2954
|
-
/**
|
|
2955
|
-
* Only available if discount_type is `percentage`. This is a number between 0
|
|
2956
|
-
* and 1.
|
|
2957
|
-
*/
|
|
2958
|
-
percentage_discount?: number | null;
|
|
2959
|
-
|
|
2960
|
-
/**
|
|
2961
|
-
* Only available if discount_type is `trial`
|
|
2962
|
-
*/
|
|
2963
|
-
trial_amount_discount?: string | null;
|
|
2964
|
-
|
|
2965
|
-
/**
|
|
2966
|
-
* Only available if discount_type is `usage`. Number of usage units that this
|
|
2967
|
-
* discount is for
|
|
2968
|
-
*/
|
|
2969
|
-
usage_discount?: number | null;
|
|
2970
|
-
}
|
|
2971
|
-
}
|
|
2972
|
-
|
|
2973
2841
|
export interface OverrideThresholdTotalAmountPrice {
|
|
2974
2842
|
id: string;
|
|
2975
2843
|
|
|
@@ -4444,8 +4312,6 @@ export interface SubscriptionSchedulePlanChangeParams {
|
|
|
4444
4312
|
| SubscriptionSchedulePlanChangeParams.OverrideBpsPrice
|
|
4445
4313
|
| SubscriptionSchedulePlanChangeParams.OverrideBulkBpsPrice
|
|
4446
4314
|
| SubscriptionSchedulePlanChangeParams.OverrideBulkPrice
|
|
4447
|
-
| SubscriptionSchedulePlanChangeParams.OverrideTestRatingFunctionPrice
|
|
4448
|
-
| SubscriptionSchedulePlanChangeParams.OverrideFivetranExamplePrice
|
|
4449
4315
|
| SubscriptionSchedulePlanChangeParams.OverrideThresholdTotalAmountPrice
|
|
4450
4316
|
| SubscriptionSchedulePlanChangeParams.OverrideTieredPackagePrice
|
|
4451
4317
|
| SubscriptionSchedulePlanChangeParams.OverrideTieredWithMinimumPrice
|
|
@@ -5161,136 +5027,6 @@ export namespace SubscriptionSchedulePlanChangeParams {
|
|
|
5161
5027
|
}
|
|
5162
5028
|
}
|
|
5163
5029
|
|
|
5164
|
-
export interface OverrideTestRatingFunctionPrice {
|
|
5165
|
-
id: string;
|
|
5166
|
-
|
|
5167
|
-
model_type: 'test_rating_function';
|
|
5168
|
-
|
|
5169
|
-
test_rating_function_config: Record<string, unknown>;
|
|
5170
|
-
|
|
5171
|
-
/**
|
|
5172
|
-
* The subscription's override discount for the plan.
|
|
5173
|
-
*/
|
|
5174
|
-
discount?: OverrideTestRatingFunctionPrice.Discount | null;
|
|
5175
|
-
|
|
5176
|
-
/**
|
|
5177
|
-
* The starting quantity of the price, if the price is a fixed price.
|
|
5178
|
-
*/
|
|
5179
|
-
fixed_price_quantity?: number | null;
|
|
5180
|
-
|
|
5181
|
-
/**
|
|
5182
|
-
* The subscription's override maximum amount for the plan.
|
|
5183
|
-
*/
|
|
5184
|
-
maximum_amount?: string | null;
|
|
5185
|
-
|
|
5186
|
-
/**
|
|
5187
|
-
* The subscription's override minimum amount for the plan.
|
|
5188
|
-
*/
|
|
5189
|
-
minimum_amount?: string | null;
|
|
5190
|
-
}
|
|
5191
|
-
|
|
5192
|
-
export namespace OverrideTestRatingFunctionPrice {
|
|
5193
|
-
/**
|
|
5194
|
-
* The subscription's override discount for the plan.
|
|
5195
|
-
*/
|
|
5196
|
-
export interface Discount {
|
|
5197
|
-
discount_type: 'percentage' | 'trial' | 'usage' | 'amount';
|
|
5198
|
-
|
|
5199
|
-
/**
|
|
5200
|
-
* Only available if discount_type is `amount`.
|
|
5201
|
-
*/
|
|
5202
|
-
amount_discount?: string | null;
|
|
5203
|
-
|
|
5204
|
-
/**
|
|
5205
|
-
* List of price_ids that this discount applies to. For plan/plan phase discounts,
|
|
5206
|
-
* this can be a subset of prices.
|
|
5207
|
-
*/
|
|
5208
|
-
applies_to_price_ids?: Array<string> | null;
|
|
5209
|
-
|
|
5210
|
-
/**
|
|
5211
|
-
* Only available if discount_type is `percentage`. This is a number between 0
|
|
5212
|
-
* and 1.
|
|
5213
|
-
*/
|
|
5214
|
-
percentage_discount?: number | null;
|
|
5215
|
-
|
|
5216
|
-
/**
|
|
5217
|
-
* Only available if discount_type is `trial`
|
|
5218
|
-
*/
|
|
5219
|
-
trial_amount_discount?: string | null;
|
|
5220
|
-
|
|
5221
|
-
/**
|
|
5222
|
-
* Only available if discount_type is `usage`. Number of usage units that this
|
|
5223
|
-
* discount is for
|
|
5224
|
-
*/
|
|
5225
|
-
usage_discount?: number | null;
|
|
5226
|
-
}
|
|
5227
|
-
}
|
|
5228
|
-
|
|
5229
|
-
export interface OverrideFivetranExamplePrice {
|
|
5230
|
-
id: string;
|
|
5231
|
-
|
|
5232
|
-
fivetran_example_config: Record<string, unknown>;
|
|
5233
|
-
|
|
5234
|
-
model_type: 'fivetran_example';
|
|
5235
|
-
|
|
5236
|
-
/**
|
|
5237
|
-
* The subscription's override discount for the plan.
|
|
5238
|
-
*/
|
|
5239
|
-
discount?: OverrideFivetranExamplePrice.Discount | null;
|
|
5240
|
-
|
|
5241
|
-
/**
|
|
5242
|
-
* The starting quantity of the price, if the price is a fixed price.
|
|
5243
|
-
*/
|
|
5244
|
-
fixed_price_quantity?: number | null;
|
|
5245
|
-
|
|
5246
|
-
/**
|
|
5247
|
-
* The subscription's override maximum amount for the plan.
|
|
5248
|
-
*/
|
|
5249
|
-
maximum_amount?: string | null;
|
|
5250
|
-
|
|
5251
|
-
/**
|
|
5252
|
-
* The subscription's override minimum amount for the plan.
|
|
5253
|
-
*/
|
|
5254
|
-
minimum_amount?: string | null;
|
|
5255
|
-
}
|
|
5256
|
-
|
|
5257
|
-
export namespace OverrideFivetranExamplePrice {
|
|
5258
|
-
/**
|
|
5259
|
-
* The subscription's override discount for the plan.
|
|
5260
|
-
*/
|
|
5261
|
-
export interface Discount {
|
|
5262
|
-
discount_type: 'percentage' | 'trial' | 'usage' | 'amount';
|
|
5263
|
-
|
|
5264
|
-
/**
|
|
5265
|
-
* Only available if discount_type is `amount`.
|
|
5266
|
-
*/
|
|
5267
|
-
amount_discount?: string | null;
|
|
5268
|
-
|
|
5269
|
-
/**
|
|
5270
|
-
* List of price_ids that this discount applies to. For plan/plan phase discounts,
|
|
5271
|
-
* this can be a subset of prices.
|
|
5272
|
-
*/
|
|
5273
|
-
applies_to_price_ids?: Array<string> | null;
|
|
5274
|
-
|
|
5275
|
-
/**
|
|
5276
|
-
* Only available if discount_type is `percentage`. This is a number between 0
|
|
5277
|
-
* and 1.
|
|
5278
|
-
*/
|
|
5279
|
-
percentage_discount?: number | null;
|
|
5280
|
-
|
|
5281
|
-
/**
|
|
5282
|
-
* Only available if discount_type is `trial`
|
|
5283
|
-
*/
|
|
5284
|
-
trial_amount_discount?: string | null;
|
|
5285
|
-
|
|
5286
|
-
/**
|
|
5287
|
-
* Only available if discount_type is `usage`. Number of usage units that this
|
|
5288
|
-
* discount is for
|
|
5289
|
-
*/
|
|
5290
|
-
usage_discount?: number | null;
|
|
5291
|
-
}
|
|
5292
|
-
}
|
|
5293
|
-
|
|
5294
5030
|
export interface OverrideThresholdTotalAmountPrice {
|
|
5295
5031
|
id: string;
|
|
5296
5032
|
|
package/src/uploads.ts
CHANGED
|
@@ -184,7 +184,7 @@ export const isMultipartBody = (body: any): body is MultipartBody =>
|
|
|
184
184
|
* Returns a multipart/form-data request if any part of the given request body contains a File / Blob value.
|
|
185
185
|
* Otherwise returns the request as is.
|
|
186
186
|
*/
|
|
187
|
-
export const maybeMultipartFormRequestOptions = async <T
|
|
187
|
+
export const maybeMultipartFormRequestOptions = async <T = Record<string, unknown>>(
|
|
188
188
|
opts: RequestOptions<T>,
|
|
189
189
|
): Promise<RequestOptions<T | MultipartBody>> => {
|
|
190
190
|
if (!hasUploadableValue(opts.body)) return opts;
|
|
@@ -193,7 +193,7 @@ export const maybeMultipartFormRequestOptions = async <T extends {} = Record<str
|
|
|
193
193
|
return getMultipartRequestOptions(form, opts);
|
|
194
194
|
};
|
|
195
195
|
|
|
196
|
-
export const multipartFormRequestOptions = async <T
|
|
196
|
+
export const multipartFormRequestOptions = async <T = Record<string, unknown>>(
|
|
197
197
|
opts: RequestOptions<T>,
|
|
198
198
|
): Promise<RequestOptions<T | MultipartBody>> => {
|
|
199
199
|
const form = await createForm(opts.body);
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '1.
|
|
1
|
+
export const VERSION = '1.35.0'; // x-release-please-version
|
package/uploads.d.ts
CHANGED
|
@@ -69,7 +69,7 @@ export declare const isMultipartBody: (body: any) => body is MultipartBody;
|
|
|
69
69
|
* Returns a multipart/form-data request if any part of the given request body contains a File / Blob value.
|
|
70
70
|
* Otherwise returns the request as is.
|
|
71
71
|
*/
|
|
72
|
-
export declare const maybeMultipartFormRequestOptions: <T
|
|
73
|
-
export declare const multipartFormRequestOptions: <T
|
|
72
|
+
export declare const maybeMultipartFormRequestOptions: <T = Record<string, unknown>>(opts: RequestOptions<T>) => Promise<RequestOptions<MultipartBody | T>>;
|
|
73
|
+
export declare const multipartFormRequestOptions: <T = Record<string, unknown>>(opts: RequestOptions<T>) => Promise<RequestOptions<MultipartBody | T>>;
|
|
74
74
|
export declare const createForm: <T = Record<string, unknown>>(body: T | undefined) => Promise<FormData>;
|
|
75
75
|
//# sourceMappingURL=uploads.d.ts.map
|
package/uploads.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"uploads.d.ts","sourceRoot":"","sources":["src/uploads.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,QAAQ,CAAC;AAC7C,OAAO,EACL,QAAQ,EAER,KAAK,IAAI,EACT,KAAK,eAAe,EAEpB,KAAK,YAAY,EAElB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,KAAK,YAAY,GAAG,MAAM,GAAG,WAAW,GAAG,eAAe,GAAG,QAAQ,GAAG,UAAU,GAAG,QAAQ,CAAC;AAC9F,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,WAAW,GAAG,eAAe,GAAG,IAAI,GAAG,UAAU,GAAG,QAAQ,CAAC;AAE7F;;;;;;;;GAQG;AACH,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,CAAC;AAEhE;;GAEG;AACH,MAAM,WAAW,QAAQ;IACvB,4EAA4E;IAC5E,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,4EAA4E;IAC5E,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,4EAA4E;IAC5E,IAAI,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC;IACxB,6EAA6E;IAC7E,KAAK,CAAC,KAAK,CAAC,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC;CAE/C;AAED;;GAEG;AACH,MAAM,WAAW,QAAS,SAAQ,QAAQ;IACxC,oFAAoF;IACpF,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B,4EAA4E;IAC5E,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,IAAI,OAAO,CAAC,QAAQ,CAAC,CAAC;CAC3B;AAED,eAAO,MAAM,cAAc,UAAW,GAAG,0BAIP,CAAC;AAEnC,eAAO,MAAM,UAAU,UAAW,GAAG,sBAKlB,CAAC;AAEpB;;;GAGG;AACH,eAAO,MAAM,UAAU,UAAW,GAAG;mBAAwC,QAAQ,WAAW,CAAC;CAOxD,CAAC;AAE1C,eAAO,MAAM,YAAY,UAAW,GAAG,wBAEtC,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG,UAAU,GAAG,OAAO,CAAC,YAAY,EAAE,MAAM,CAAC,GAAG,aAAa,CAAC,YAAY,CAAC,CAAC;AAEnG;;;;;;;;GAQG;AACH,wBAAsB,MAAM,CAC1B,KAAK,EAAE,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC,EAC7C,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EAChC,OAAO,GAAE,eAAe,GAAG,SAAc,GACxC,OAAO,CAAC,QAAQ,CAAC,CAuBnB;AAmDD,eAAO,MAAM,eAAe,SAAU,GAAG,0BACsD,CAAC;AAEhG;;;GAGG;AACH,eAAO,MAAM,gCAAgC,
|
|
1
|
+
{"version":3,"file":"uploads.d.ts","sourceRoot":"","sources":["src/uploads.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,cAAc,EAAE,MAAM,QAAQ,CAAC;AAC7C,OAAO,EACL,QAAQ,EAER,KAAK,IAAI,EACT,KAAK,eAAe,EAEpB,KAAK,YAAY,EAElB,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AAE9C,KAAK,YAAY,GAAG,MAAM,GAAG,WAAW,GAAG,eAAe,GAAG,QAAQ,GAAG,UAAU,GAAG,QAAQ,CAAC;AAC9F,MAAM,MAAM,QAAQ,GAAG,MAAM,GAAG,WAAW,GAAG,eAAe,GAAG,IAAI,GAAG,UAAU,GAAG,QAAQ,CAAC;AAE7F;;;;;;;;GAQG;AACH,MAAM,MAAM,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,CAAC;AAEhE;;GAEG;AACH,MAAM,WAAW,QAAQ;IACvB,4EAA4E;IAC5E,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,4EAA4E;IAC5E,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,4EAA4E;IAC5E,IAAI,IAAI,OAAO,CAAC,MAAM,CAAC,CAAC;IACxB,6EAA6E;IAC7E,KAAK,CAAC,KAAK,CAAC,EAAE,MAAM,EAAE,GAAG,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAC;CAE/C;AAED;;GAEG;AACH,MAAM,WAAW,QAAS,SAAQ,QAAQ;IACxC,oFAAoF;IACpF,QAAQ,CAAC,YAAY,EAAE,MAAM,CAAC;IAC9B,4EAA4E;IAC5E,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,YAAY;IAC3B,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,IAAI,OAAO,CAAC,QAAQ,CAAC,CAAC;CAC3B;AAED,eAAO,MAAM,cAAc,UAAW,GAAG,0BAIP,CAAC;AAEnC,eAAO,MAAM,UAAU,UAAW,GAAG,sBAKlB,CAAC;AAEpB;;;GAGG;AACH,eAAO,MAAM,UAAU,UAAW,GAAG;mBAAwC,QAAQ,WAAW,CAAC;CAOxD,CAAC;AAE1C,eAAO,MAAM,YAAY,UAAW,GAAG,wBAEtC,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG,UAAU,GAAG,OAAO,CAAC,YAAY,EAAE,MAAM,CAAC,GAAG,aAAa,CAAC,YAAY,CAAC,CAAC;AAEnG;;;;;;;;GAQG;AACH,wBAAsB,MAAM,CAC1B,KAAK,EAAE,WAAW,GAAG,WAAW,CAAC,WAAW,CAAC,EAC7C,IAAI,CAAC,EAAE,MAAM,GAAG,IAAI,GAAG,SAAS,EAChC,OAAO,GAAE,eAAe,GAAG,SAAc,GACxC,OAAO,CAAC,QAAQ,CAAC,CAuBnB;AAmDD,eAAO,MAAM,eAAe,SAAU,GAAG,0BACsD,CAAC;AAEhG;;;GAGG;AACH,eAAO,MAAM,gCAAgC,sGAO5C,CAAC;AAEF,eAAO,MAAM,2BAA2B,sGAKvC,CAAC;AAEF,eAAO,MAAM,UAAU,wDAA6D,QAAQ,QAAQ,CAInG,CAAC"}
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "1.
|
|
1
|
+
export declare const VERSION = "1.35.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '1.
|
|
1
|
+
export const VERSION = '1.35.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|