@managespace/sdk 0.0.134 → 0.0.136

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.
Files changed (64) hide show
  1. package/.turbo/turbo-build.log +2 -0
  2. package/dist/extensibility/functions/project/billing.d.ts +7 -0
  3. package/dist/extensibility/functions/project/billing.d.ts.map +1 -1
  4. package/dist/extensibility/functions/project/billing.js +5 -0
  5. package/dist/extensibility/functions/project/document.d.ts +1 -14
  6. package/dist/extensibility/functions/project/document.d.ts.map +1 -1
  7. package/dist/extensibility/functions/project/document.js +0 -10
  8. package/dist/generated/apis/default-api.d.ts +11 -51
  9. package/dist/generated/apis/default-api.d.ts.map +1 -1
  10. package/dist/generated/apis/default-api.js +33 -163
  11. package/dist/generated/models/create-subscription-plan.d.ts +69 -0
  12. package/dist/generated/models/create-subscription-plan.d.ts.map +1 -0
  13. package/dist/generated/models/create-subscription-plan.js +71 -0
  14. package/dist/generated/models/document-signed.d.ts +0 -6
  15. package/dist/generated/models/document-signed.d.ts.map +1 -1
  16. package/dist/generated/models/document-signed.js +0 -4
  17. package/dist/generated/models/index.d.ts +0 -5
  18. package/dist/generated/models/index.d.ts.map +1 -1
  19. package/dist/generated/models/index.js +0 -5
  20. package/dist/generated/models/subscription-invoice-line.d.ts +117 -0
  21. package/dist/generated/models/subscription-invoice-line.d.ts.map +1 -0
  22. package/dist/generated/models/subscription-invoice-line.js +107 -0
  23. package/dist/generated/models/subscription-invoice.d.ts +58 -0
  24. package/dist/generated/models/subscription-invoice.d.ts.map +1 -0
  25. package/dist/generated/models/subscription-invoice.js +68 -0
  26. package/dist/generated/models/subscription-plan.d.ts +268 -0
  27. package/dist/generated/models/subscription-plan.d.ts.map +1 -0
  28. package/dist/generated/models/subscription-plan.js +208 -0
  29. package/dist/generated/models/subscription-preview.d.ts +275 -0
  30. package/dist/generated/models/subscription-preview.d.ts.map +1 -0
  31. package/dist/generated/models/subscription-preview.js +211 -0
  32. package/dist/generated/models/update-subscription-charge.d.ts +293 -0
  33. package/dist/generated/models/update-subscription-charge.d.ts.map +1 -0
  34. package/dist/generated/models/update-subscription-charge.js +149 -0
  35. package/dist/generated/models/update-subscription.d.ts +226 -0
  36. package/dist/generated/models/update-subscription.d.ts.map +1 -0
  37. package/dist/generated/models/update-subscription.js +118 -0
  38. package/package.json +2 -2
  39. package/src/extensibility/functions/project/billing.ts +9 -0
  40. package/src/generated/.openapi-generator/FILES +3 -0
  41. package/src/generated/apis/default-api.ts +54 -0
  42. package/src/generated/models/index.ts +3 -0
  43. package/src/generated/models/subscription-invoice-line.ts +192 -0
  44. package/src/generated/models/subscription-invoice.ts +110 -0
  45. package/src/generated/models/subscription-preview.ts +440 -0
  46. package/dist/generated/models/document-url.d.ts +0 -39
  47. package/dist/generated/models/document-url.d.ts.map +0 -1
  48. package/dist/generated/models/document-url.js +0 -55
  49. package/dist/generated/models/document.d.ts +0 -39
  50. package/dist/generated/models/document.d.ts.map +0 -1
  51. package/dist/generated/models/document.js +0 -55
  52. package/dist/generated/models/get-documents200-response.d.ts +0 -41
  53. package/dist/generated/models/get-documents200-response.d.ts.map +0 -1
  54. package/dist/generated/models/get-documents200-response.js +0 -55
  55. package/dist/generated/models/upload-document.d.ts +0 -45
  56. package/dist/generated/models/upload-document.d.ts.map +0 -1
  57. package/dist/generated/models/upload-document.js +0 -55
  58. package/dist/generated/models/uploaded-document.d.ts +0 -33
  59. package/dist/generated/models/uploaded-document.d.ts.map +0 -1
  60. package/dist/generated/models/uploaded-document.js +0 -51
  61. package/dist/generated/models/uploaded-documents.d.ts +0 -45
  62. package/dist/generated/models/uploaded-documents.d.ts.map +0 -1
  63. package/dist/generated/models/uploaded-documents.js +0 -59
  64. package/package.deploy.json +0 -33
@@ -0,0 +1,208 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * ManageSpace API
6
+ * ManageSpace API Documentation
7
+ *
8
+ * The version of the OpenAPI document: 1.0.0
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.SubscriptionPlanToJSONTyped = exports.SubscriptionPlanToJSON = exports.SubscriptionPlanFromJSONTyped = exports.SubscriptionPlanFromJSON = exports.instanceOfSubscriptionPlan = void 0;
17
+ const transaction_posting_entries_1 = require("./transaction-posting-entries");
18
+ /**
19
+ * Check if a given object implements the SubscriptionPlan interface.
20
+ */
21
+ function instanceOfSubscriptionPlan(value) {
22
+ if (!('externalProductId' in value) || value['externalProductId'] === undefined)
23
+ return false;
24
+ if (!('productName' in value) || value['productName'] === undefined)
25
+ return false;
26
+ if (!('externalPlanId' in value) || value['externalPlanId'] === undefined)
27
+ return false;
28
+ if (!('planName' in value) || value['planName'] === undefined)
29
+ return false;
30
+ if (!('subscriptionLineId' in value) || value['subscriptionLineId'] === undefined)
31
+ return false;
32
+ if (!('externalChargeId' in value) || value['externalChargeId'] === undefined)
33
+ return false;
34
+ if (!('chargeName' in value) || value['chargeName'] === undefined)
35
+ return false;
36
+ if (!('pricingModel' in value) || value['pricingModel'] === undefined)
37
+ return false;
38
+ if (!('listPrice' in value) || value['listPrice'] === undefined)
39
+ return false;
40
+ if (!('listPriceBase' in value) || value['listPriceBase'] === undefined)
41
+ return false;
42
+ if (!('priceBase' in value) || value['priceBase'] === undefined)
43
+ return false;
44
+ if (!('quantity' in value) || value['quantity'] === undefined)
45
+ return false;
46
+ if (!('includedUnits' in value) || value['includedUnits'] === undefined)
47
+ return false;
48
+ if (!('discount' in value) || value['discount'] === undefined)
49
+ return false;
50
+ if (!('effectivePrice' in value) || value['effectivePrice'] === undefined)
51
+ return false;
52
+ if (!('chargeType' in value) || value['chargeType'] === undefined)
53
+ return false;
54
+ if (!('billingPeriod' in value) || value['billingPeriod'] === undefined)
55
+ return false;
56
+ if (!('unitOfMeasure' in value) || value['unitOfMeasure'] === undefined)
57
+ return false;
58
+ if (!('currentPeriodStartDate' in value) || value['currentPeriodStartDate'] === undefined)
59
+ return false;
60
+ if (!('currentPeriodEndDate' in value) || value['currentPeriodEndDate'] === undefined)
61
+ return false;
62
+ if (!('billingScheduleId' in value) || value['billingScheduleId'] === undefined)
63
+ return false;
64
+ if (!('revenueScheduleId' in value) || value['revenueScheduleId'] === undefined)
65
+ return false;
66
+ if (!('chargeTiming' in value) || value['chargeTiming'] === undefined)
67
+ return false;
68
+ if (!('billingPeriodStartAlignment' in value) || value['billingPeriodStartAlignment'] === undefined)
69
+ return false;
70
+ if (!('billingDay' in value) || value['billingDay'] === undefined)
71
+ return false;
72
+ if (!('proratePartialPeriods' in value) || value['proratePartialPeriods'] === undefined)
73
+ return false;
74
+ if (!('backchargeCurrentPeriod' in value) || value['backchargeCurrentPeriod'] === undefined)
75
+ return false;
76
+ if (!('prepaymentPeriods' in value) || value['prepaymentPeriods'] === undefined)
77
+ return false;
78
+ if (!('cmrr' in value) || value['cmrr'] === undefined)
79
+ return false;
80
+ if (!('discountedCmrr' in value) || value['discountedCmrr'] === undefined)
81
+ return false;
82
+ if (!('chargeStartDate' in value) || value['chargeStartDate'] === undefined)
83
+ return false;
84
+ if (!('chargeEndDate' in value) || value['chargeEndDate'] === undefined)
85
+ return false;
86
+ if (!('renewalIncrementPercent' in value) || value['renewalIncrementPercent'] === undefined)
87
+ return false;
88
+ if (!('overrideRenewalIncrementPercent' in value) || value['overrideRenewalIncrementPercent'] === undefined)
89
+ return false;
90
+ if (!('defaultFromPlan' in value) || value['defaultFromPlan'] === undefined)
91
+ return false;
92
+ if (!('revenueRuleId' in value) || value['revenueRuleId'] === undefined)
93
+ return false;
94
+ if (!('recognitionStartDate' in value) || value['recognitionStartDate'] === undefined)
95
+ return false;
96
+ if (!('recognitionEndDate' in value) || value['recognitionEndDate'] === undefined)
97
+ return false;
98
+ if (!('transactionPostingEntries' in value) || value['transactionPostingEntries'] === undefined)
99
+ return false;
100
+ if (!('customFields' in value) || value['customFields'] === undefined)
101
+ return false;
102
+ return true;
103
+ }
104
+ exports.instanceOfSubscriptionPlan = instanceOfSubscriptionPlan;
105
+ function SubscriptionPlanFromJSON(json) {
106
+ return SubscriptionPlanFromJSONTyped(json, false);
107
+ }
108
+ exports.SubscriptionPlanFromJSON = SubscriptionPlanFromJSON;
109
+ function SubscriptionPlanFromJSONTyped(json, ignoreDiscriminator) {
110
+ if (json == null) {
111
+ return json;
112
+ }
113
+ return {
114
+ 'externalProductId': json['externalProductId'],
115
+ 'productName': json['productName'],
116
+ 'externalPlanId': json['externalPlanId'],
117
+ 'planName': json['planName'],
118
+ 'subscriptionLineId': json['subscriptionLineId'],
119
+ 'externalChargeId': json['externalChargeId'],
120
+ 'chargeName': json['chargeName'],
121
+ 'pricingModel': json['pricingModel'],
122
+ 'listPrice': json['listPrice'],
123
+ 'listPriceBase': json['listPriceBase'],
124
+ 'priceBase': json['priceBase'],
125
+ 'quantity': json['quantity'],
126
+ 'includedUnits': json['includedUnits'],
127
+ 'discount': json['discount'],
128
+ 'effectivePrice': json['effectivePrice'],
129
+ 'chargeType': json['chargeType'],
130
+ 'billingPeriod': json['billingPeriod'],
131
+ 'unitOfMeasure': json['unitOfMeasure'],
132
+ 'currentPeriodStartDate': json['currentPeriodStartDate'],
133
+ 'currentPeriodEndDate': json['currentPeriodEndDate'],
134
+ 'billingScheduleId': json['billingScheduleId'],
135
+ 'revenueScheduleId': json['revenueScheduleId'],
136
+ 'chargeTiming': json['chargeTiming'],
137
+ 'billingPeriodStartAlignment': json['billingPeriodStartAlignment'],
138
+ 'billingDay': json['billingDay'],
139
+ 'proratePartialPeriods': json['proratePartialPeriods'],
140
+ 'backchargeCurrentPeriod': json['backchargeCurrentPeriod'],
141
+ 'prepaymentPeriods': json['prepaymentPeriods'],
142
+ 'cmrr': json['cmrr'],
143
+ 'discountedCmrr': json['discountedCmrr'],
144
+ 'chargeStartDate': json['chargeStartDate'],
145
+ 'chargeEndDate': json['chargeEndDate'],
146
+ 'renewalIncrementPercent': json['renewalIncrementPercent'],
147
+ 'overrideRenewalIncrementPercent': json['overrideRenewalIncrementPercent'],
148
+ 'defaultFromPlan': json['defaultFromPlan'],
149
+ 'revenueRuleId': json['revenueRuleId'],
150
+ 'recognitionStartDate': json['recognitionStartDate'],
151
+ 'recognitionEndDate': json['recognitionEndDate'],
152
+ 'transactionPostingEntries': (json['transactionPostingEntries'].map(transaction_posting_entries_1.TransactionPostingEntriesFromJSON)),
153
+ 'customFields': json['customFields'],
154
+ };
155
+ }
156
+ exports.SubscriptionPlanFromJSONTyped = SubscriptionPlanFromJSONTyped;
157
+ function SubscriptionPlanToJSON(json) {
158
+ return SubscriptionPlanToJSONTyped(json, false);
159
+ }
160
+ exports.SubscriptionPlanToJSON = SubscriptionPlanToJSON;
161
+ function SubscriptionPlanToJSONTyped(value, ignoreDiscriminator = false) {
162
+ if (value == null) {
163
+ return value;
164
+ }
165
+ return {
166
+ 'externalProductId': value['externalProductId'],
167
+ 'productName': value['productName'],
168
+ 'externalPlanId': value['externalPlanId'],
169
+ 'planName': value['planName'],
170
+ 'subscriptionLineId': value['subscriptionLineId'],
171
+ 'externalChargeId': value['externalChargeId'],
172
+ 'chargeName': value['chargeName'],
173
+ 'pricingModel': value['pricingModel'],
174
+ 'listPrice': value['listPrice'],
175
+ 'listPriceBase': value['listPriceBase'],
176
+ 'priceBase': value['priceBase'],
177
+ 'quantity': value['quantity'],
178
+ 'includedUnits': value['includedUnits'],
179
+ 'discount': value['discount'],
180
+ 'effectivePrice': value['effectivePrice'],
181
+ 'chargeType': value['chargeType'],
182
+ 'billingPeriod': value['billingPeriod'],
183
+ 'unitOfMeasure': value['unitOfMeasure'],
184
+ 'currentPeriodStartDate': value['currentPeriodStartDate'],
185
+ 'currentPeriodEndDate': value['currentPeriodEndDate'],
186
+ 'billingScheduleId': value['billingScheduleId'],
187
+ 'revenueScheduleId': value['revenueScheduleId'],
188
+ 'chargeTiming': value['chargeTiming'],
189
+ 'billingPeriodStartAlignment': value['billingPeriodStartAlignment'],
190
+ 'billingDay': value['billingDay'],
191
+ 'proratePartialPeriods': value['proratePartialPeriods'],
192
+ 'backchargeCurrentPeriod': value['backchargeCurrentPeriod'],
193
+ 'prepaymentPeriods': value['prepaymentPeriods'],
194
+ 'cmrr': value['cmrr'],
195
+ 'discountedCmrr': value['discountedCmrr'],
196
+ 'chargeStartDate': value['chargeStartDate'],
197
+ 'chargeEndDate': value['chargeEndDate'],
198
+ 'renewalIncrementPercent': value['renewalIncrementPercent'],
199
+ 'overrideRenewalIncrementPercent': value['overrideRenewalIncrementPercent'],
200
+ 'defaultFromPlan': value['defaultFromPlan'],
201
+ 'revenueRuleId': value['revenueRuleId'],
202
+ 'recognitionStartDate': value['recognitionStartDate'],
203
+ 'recognitionEndDate': value['recognitionEndDate'],
204
+ 'transactionPostingEntries': (value['transactionPostingEntries'].map(transaction_posting_entries_1.TransactionPostingEntriesToJSON)),
205
+ 'customFields': value['customFields'],
206
+ };
207
+ }
208
+ exports.SubscriptionPlanToJSONTyped = SubscriptionPlanToJSONTyped;
@@ -0,0 +1,275 @@
1
+ /**
2
+ * ManageSpace API
3
+ * ManageSpace API Documentation
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { SubscriptionCharge } from './subscription-charge';
13
+ import type { SubscriptionInvoice } from './subscription-invoice';
14
+ /**
15
+ *
16
+ * @export
17
+ * @interface SubscriptionPreview
18
+ */
19
+ export interface SubscriptionPreview {
20
+ /**
21
+ * Subscription ID
22
+ * @type {string}
23
+ * @memberof SubscriptionPreview
24
+ */
25
+ id: string;
26
+ /**
27
+ * Customer ID
28
+ * @type {string}
29
+ * @memberof SubscriptionPreview
30
+ */
31
+ externalCustomerId: string;
32
+ /**
33
+ * Customer name
34
+ * @type {string}
35
+ * @memberof SubscriptionPreview
36
+ */
37
+ customerName: string;
38
+ /**
39
+ * Id of billing contact
40
+ * @type {string}
41
+ * @memberof SubscriptionPreview
42
+ */
43
+ externalBillContactId: string;
44
+ /**
45
+ * Id of shipping contact
46
+ * @type {string}
47
+ * @memberof SubscriptionPreview
48
+ */
49
+ externalShippingContactId: string;
50
+ /**
51
+ * Status of subscription contract
52
+ * @type {string}
53
+ * @memberof SubscriptionPreview
54
+ */
55
+ status: string;
56
+ /**
57
+ * Set to defer start date
58
+ * @type {boolean}
59
+ * @memberof SubscriptionPreview
60
+ */
61
+ deferStartDate: boolean;
62
+ /**
63
+ * Billing start date for subscription contract
64
+ * @type {string}
65
+ * @memberof SubscriptionPreview
66
+ */
67
+ billingStartDate: string;
68
+ /**
69
+ * Service start date for subscription contract
70
+ * @type {string}
71
+ * @memberof SubscriptionPreview
72
+ */
73
+ serviceStartDate: string;
74
+ /**
75
+ * Date order was placed
76
+ * @type {string}
77
+ * @memberof SubscriptionPreview
78
+ */
79
+ orderPlacedAt: string;
80
+ /**
81
+ * Date subscription contract was signed and activated
82
+ * @type {string}
83
+ * @memberof SubscriptionPreview
84
+ */
85
+ contractEffectiveDate: string;
86
+ /**
87
+ * Date subscription contract was terminated
88
+ * @type {string}
89
+ * @memberof SubscriptionPreview
90
+ */
91
+ cancellationDate: string;
92
+ /**
93
+ * Date subscription contract to pause
94
+ * @type {string}
95
+ * @memberof SubscriptionPreview
96
+ */
97
+ pauseEffectiveDate: string;
98
+ /**
99
+ * Date subscription contract to resume
100
+ * @type {string}
101
+ * @memberof SubscriptionPreview
102
+ */
103
+ resumeEffectiveDate: string;
104
+ /**
105
+ * Set to extend contract on resume
106
+ * @type {boolean}
107
+ * @memberof SubscriptionPreview
108
+ */
109
+ extendOnResume: boolean;
110
+ /**
111
+ * auto-renew subscription contract
112
+ * @type {boolean}
113
+ * @memberof SubscriptionPreview
114
+ */
115
+ autoRenew: boolean;
116
+ /**
117
+ * currency
118
+ * @type {string}
119
+ * @memberof SubscriptionPreview
120
+ */
121
+ currency: string;
122
+ /**
123
+ * Calculate due date of invoice
124
+ * @type {string}
125
+ * @memberof SubscriptionPreview
126
+ */
127
+ paymentTerms: string;
128
+ /**
129
+ * Contracted MRR per charge
130
+ * @type {string}
131
+ * @memberof SubscriptionPreview
132
+ */
133
+ cmrr: string;
134
+ /**
135
+ * MRR calculated based on % discount
136
+ * @type {string}
137
+ * @memberof SubscriptionPreview
138
+ */
139
+ discountedCmrr: string;
140
+ /**
141
+ * separate invoice generated
142
+ * @type {boolean}
143
+ * @memberof SubscriptionPreview
144
+ */
145
+ separateInvoice: boolean;
146
+ /**
147
+ * Miscellaneous notes
148
+ * @type {string}
149
+ * @memberof SubscriptionPreview
150
+ */
151
+ notes: string;
152
+ /**
153
+ * Version of subscription contract
154
+ * @type {number}
155
+ * @memberof SubscriptionPreview
156
+ */
157
+ version: number;
158
+ /**
159
+ * Subscription contract version type
160
+ * @type {string}
161
+ * @memberof SubscriptionPreview
162
+ */
163
+ versionType: string;
164
+ /**
165
+ * Term of contract in months
166
+ * @type {string}
167
+ * @memberof SubscriptionPreview
168
+ */
169
+ contractTerm: string;
170
+ /**
171
+ * Date subscription contract will start
172
+ * @type {number}
173
+ * @memberof SubscriptionPreview
174
+ */
175
+ renewalIncrementPercent: number;
176
+ /**
177
+ * Total contract value of the subsctiption contract
178
+ * @type {number}
179
+ * @memberof SubscriptionPreview
180
+ */
181
+ tcv: number;
182
+ /**
183
+ * Subscription charge details
184
+ * @type {Array<SubscriptionCharge>}
185
+ * @memberof SubscriptionPreview
186
+ */
187
+ charges: Array<SubscriptionCharge>;
188
+ /**
189
+ * Date record was created
190
+ * @type {string}
191
+ * @memberof SubscriptionPreview
192
+ */
193
+ createdAt: string;
194
+ /**
195
+ * Date record was created
196
+ * @type {string}
197
+ * @memberof SubscriptionPreview
198
+ */
199
+ updatedAt: string;
200
+ /**
201
+ * Email of user who created record
202
+ * @type {string}
203
+ * @memberof SubscriptionPreview
204
+ */
205
+ createdBy: string;
206
+ /**
207
+ * Email of user who last modifed record
208
+ * @type {string}
209
+ * @memberof SubscriptionPreview
210
+ */
211
+ updatedBy: string;
212
+ /**
213
+ * Id of billing contact sf
214
+ * @type {string}
215
+ * @memberof SubscriptionPreview
216
+ */
217
+ billContactSfId: string;
218
+ /**
219
+ * Id of shipping contact sf
220
+ * @type {string}
221
+ * @memberof SubscriptionPreview
222
+ */
223
+ shippingContactSfId: string;
224
+ /**
225
+ * Custom fields on the invoice
226
+ * @type {object}
227
+ * @memberof SubscriptionPreview
228
+ */
229
+ customFields: object;
230
+ /**
231
+ * Asset ID
232
+ * @type {string}
233
+ * @memberof SubscriptionPreview
234
+ */
235
+ assetId?: string;
236
+ /**
237
+ * Site ID
238
+ * @type {string}
239
+ * @memberof SubscriptionPreview
240
+ */
241
+ siteId: string;
242
+ /**
243
+ * External id associated with subscription
244
+ * @type {string}
245
+ * @memberof SubscriptionPreview
246
+ */
247
+ externalId: string;
248
+ /**
249
+ * Subscription Current Invoice line items
250
+ * @type {SubscriptionInvoice}
251
+ * @memberof SubscriptionPreview
252
+ */
253
+ currentInvoice: SubscriptionInvoice;
254
+ /**
255
+ * Subscription Next Invoice line items
256
+ * @type {SubscriptionInvoice}
257
+ * @memberof SubscriptionPreview
258
+ */
259
+ nextInvoice: SubscriptionInvoice;
260
+ /**
261
+ * Estimated tax amount
262
+ * @type {string}
263
+ * @memberof SubscriptionPreview
264
+ */
265
+ estimatedTax: string;
266
+ }
267
+ /**
268
+ * Check if a given object implements the SubscriptionPreview interface.
269
+ */
270
+ export declare function instanceOfSubscriptionPreview(value: object): value is SubscriptionPreview;
271
+ export declare function SubscriptionPreviewFromJSON(json: any): SubscriptionPreview;
272
+ export declare function SubscriptionPreviewFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionPreview;
273
+ export declare function SubscriptionPreviewToJSON(json: any): SubscriptionPreview;
274
+ export declare function SubscriptionPreviewToJSONTyped(value?: SubscriptionPreview | null, ignoreDiscriminator?: boolean): any;
275
+ //# sourceMappingURL=subscription-preview.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"subscription-preview.d.ts","sourceRoot":"","sources":["../../../src/generated/models/subscription-preview.ts"],"names":[],"mappings":"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"}