@stigg/typescript 0.1.0-alpha.26 → 0.1.0-alpha.27
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 +19 -0
- package/package.json +1 -1
- package/resources/internal/beta/beta.d.mts +2 -2
- package/resources/internal/beta/beta.d.mts.map +1 -1
- package/resources/internal/beta/beta.d.ts +2 -2
- package/resources/internal/beta/beta.d.ts.map +1 -1
- package/resources/internal/beta/beta.js.map +1 -1
- package/resources/internal/beta/beta.mjs.map +1 -1
- package/resources/internal/beta/event-queues.d.mts +8 -152
- package/resources/internal/beta/event-queues.d.mts.map +1 -1
- package/resources/internal/beta/event-queues.d.ts +8 -152
- package/resources/internal/beta/event-queues.d.ts.map +1 -1
- package/resources/internal/beta/event-queues.js.map +1 -1
- package/resources/internal/beta/event-queues.mjs.map +1 -1
- package/resources/internal/beta/index.d.mts +1 -1
- package/resources/internal/beta/index.d.mts.map +1 -1
- package/resources/internal/beta/index.d.ts +1 -1
- package/resources/internal/beta/index.d.ts.map +1 -1
- package/resources/internal/beta/index.js.map +1 -1
- package/resources/internal/beta/index.mjs.map +1 -1
- package/resources/v1/customers/customers.d.mts +78 -3
- package/resources/v1/customers/customers.d.mts.map +1 -1
- package/resources/v1/customers/customers.d.ts +78 -3
- 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/index.d.mts +2 -2
- package/resources/v1/customers/index.d.mts.map +1 -1
- package/resources/v1/customers/index.d.ts +2 -2
- package/resources/v1/customers/index.d.ts.map +1 -1
- package/resources/v1/customers/index.js.map +1 -1
- package/resources/v1/customers/index.mjs.map +1 -1
- package/resources/v1/customers/integrations.d.mts +6 -305
- package/resources/v1/customers/integrations.d.mts.map +1 -1
- package/resources/v1/customers/integrations.d.ts +6 -305
- package/resources/v1/customers/integrations.d.ts.map +1 -1
- package/resources/v1/customers/integrations.js.map +1 -1
- package/resources/v1/customers/integrations.mjs.map +1 -1
- package/resources/v1/index.d.mts +1 -1
- package/resources/v1/index.d.mts.map +1 -1
- package/resources/v1/index.d.ts +1 -1
- 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/v1.d.mts +2 -2
- package/resources/v1/v1.d.mts.map +1 -1
- package/resources/v1/v1.d.ts +2 -2
- 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/src/resources/internal/beta/beta.ts +2 -8
- package/src/resources/internal/beta/event-queues.ts +8 -266
- package/src/resources/internal/beta/index.ts +1 -4
- package/src/resources/v1/customers/customers.ts +101 -8
- package/src/resources/v1/customers/index.ts +1 -4
- package/src/resources/v1/customers/integrations.ts +5 -408
- package/src/resources/v1/index.ts +1 -0
- package/src/resources/v1/v1.ts +2 -0
- 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
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { APIResource } from "../../../core/resource.mjs";
|
|
2
|
+
import * as CustomersAPI from "./customers.mjs";
|
|
2
3
|
import { APIPromise } from "../../../core/api-promise.mjs";
|
|
3
4
|
import { MyCursorIDPage, type MyCursorIDPageParams, PagePromise } from "../../../core/pagination.mjs";
|
|
4
5
|
import { RequestOptions } from "../../../internal/request-options.mjs";
|
|
@@ -6,12 +7,12 @@ export declare class Integrations extends APIResource {
|
|
|
6
7
|
/**
|
|
7
8
|
* Retrieves a specific integration for a customer by integration ID.
|
|
8
9
|
*/
|
|
9
|
-
retrieve(integrationID: string, params: IntegrationRetrieveParams, options?: RequestOptions): APIPromise<
|
|
10
|
+
retrieve(integrationID: string, params: IntegrationRetrieveParams, options?: RequestOptions): APIPromise<CustomersAPI.CustomerIntegrationResponse>;
|
|
10
11
|
/**
|
|
11
12
|
* Updates a customer's integration link, such as changing the synced external
|
|
12
13
|
* entity ID.
|
|
13
14
|
*/
|
|
14
|
-
update(integrationID: string, params: IntegrationUpdateParams, options?: RequestOptions): APIPromise<
|
|
15
|
+
update(integrationID: string, params: IntegrationUpdateParams, options?: RequestOptions): APIPromise<CustomersAPI.CustomerIntegrationResponse>;
|
|
15
16
|
/**
|
|
16
17
|
* Retrieves a paginated list of a customer's external integrations (billing, CRM,
|
|
17
18
|
* etc.).
|
|
@@ -21,163 +22,13 @@ export declare class Integrations extends APIResource {
|
|
|
21
22
|
* Links a customer to an external integration by specifying the vendor and
|
|
22
23
|
* external entity ID.
|
|
23
24
|
*/
|
|
24
|
-
link(id: string, body: IntegrationLinkParams, options?: RequestOptions): APIPromise<
|
|
25
|
+
link(id: string, body: IntegrationLinkParams, options?: RequestOptions): APIPromise<CustomersAPI.CustomerIntegrationResponse>;
|
|
25
26
|
/**
|
|
26
27
|
* Removes the link between a customer and an external integration.
|
|
27
28
|
*/
|
|
28
|
-
unlink(integrationID: string, params: IntegrationUnlinkParams, options?: RequestOptions): APIPromise<
|
|
29
|
+
unlink(integrationID: string, params: IntegrationUnlinkParams, options?: RequestOptions): APIPromise<CustomersAPI.CustomerIntegrationResponse>;
|
|
29
30
|
}
|
|
30
31
|
export type IntegrationListResponsesMyCursorIDPage = MyCursorIDPage<IntegrationListResponse>;
|
|
31
|
-
/**
|
|
32
|
-
* Response object
|
|
33
|
-
*/
|
|
34
|
-
export interface IntegrationRetrieveResponse {
|
|
35
|
-
/**
|
|
36
|
-
* External billing or CRM integration link
|
|
37
|
-
*/
|
|
38
|
-
data: IntegrationRetrieveResponse.Data;
|
|
39
|
-
}
|
|
40
|
-
export declare namespace IntegrationRetrieveResponse {
|
|
41
|
-
/**
|
|
42
|
-
* External billing or CRM integration link
|
|
43
|
-
*/
|
|
44
|
-
interface Data {
|
|
45
|
-
/**
|
|
46
|
-
* Integration details
|
|
47
|
-
*/
|
|
48
|
-
id: string;
|
|
49
|
-
/**
|
|
50
|
-
* Synced entity id
|
|
51
|
-
*/
|
|
52
|
-
syncedEntityId: string | null;
|
|
53
|
-
/**
|
|
54
|
-
* The vendor identifier of integration
|
|
55
|
-
*/
|
|
56
|
-
vendorIdentifier: 'AUTH0' | 'ZUORA' | 'STRIPE' | 'HUBSPOT' | 'AWS_MARKETPLACE' | 'SNOWFLAKE' | 'SALESFORCE' | 'BIG_QUERY' | 'OPEN_FGA' | 'APP_STORE';
|
|
57
|
-
/**
|
|
58
|
-
* Price billing sync revision data containing billing ID, link URL, and price
|
|
59
|
-
* group package billing ID
|
|
60
|
-
*/
|
|
61
|
-
syncData?: Data.SyncRevisionPriceBillingData | Data.SyncRevisionBillingData | Data.SyncRevisionMarketplaceData | null;
|
|
62
|
-
}
|
|
63
|
-
namespace Data {
|
|
64
|
-
/**
|
|
65
|
-
* Price billing sync revision data containing billing ID, link URL, and price
|
|
66
|
-
* group package billing ID
|
|
67
|
-
*/
|
|
68
|
-
interface SyncRevisionPriceBillingData {
|
|
69
|
-
/**
|
|
70
|
-
* Billing integration id
|
|
71
|
-
*/
|
|
72
|
-
billingId: string;
|
|
73
|
-
/**
|
|
74
|
-
* Billing integration url
|
|
75
|
-
*/
|
|
76
|
-
billingLinkUrl: string;
|
|
77
|
-
/**
|
|
78
|
-
* Price group package billing id
|
|
79
|
-
*/
|
|
80
|
-
priceGroupPackageBillingId: string;
|
|
81
|
-
}
|
|
82
|
-
/**
|
|
83
|
-
* Billing sync revision data containing billing ID and link URL
|
|
84
|
-
*/
|
|
85
|
-
interface SyncRevisionBillingData {
|
|
86
|
-
/**
|
|
87
|
-
* Billing integration id
|
|
88
|
-
*/
|
|
89
|
-
billingId: string;
|
|
90
|
-
/**
|
|
91
|
-
* Billing integration url
|
|
92
|
-
*/
|
|
93
|
-
billingLinkUrl: string;
|
|
94
|
-
}
|
|
95
|
-
/**
|
|
96
|
-
* Marketplace sync revision data containing dimensions
|
|
97
|
-
*/
|
|
98
|
-
interface SyncRevisionMarketplaceData {
|
|
99
|
-
/**
|
|
100
|
-
* Dimensions of the marketplace sync revision
|
|
101
|
-
*/
|
|
102
|
-
dimensions: string;
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
/**
|
|
107
|
-
* Response object
|
|
108
|
-
*/
|
|
109
|
-
export interface IntegrationUpdateResponse {
|
|
110
|
-
/**
|
|
111
|
-
* External billing or CRM integration link
|
|
112
|
-
*/
|
|
113
|
-
data: IntegrationUpdateResponse.Data;
|
|
114
|
-
}
|
|
115
|
-
export declare namespace IntegrationUpdateResponse {
|
|
116
|
-
/**
|
|
117
|
-
* External billing or CRM integration link
|
|
118
|
-
*/
|
|
119
|
-
interface Data {
|
|
120
|
-
/**
|
|
121
|
-
* Integration details
|
|
122
|
-
*/
|
|
123
|
-
id: string;
|
|
124
|
-
/**
|
|
125
|
-
* Synced entity id
|
|
126
|
-
*/
|
|
127
|
-
syncedEntityId: string | null;
|
|
128
|
-
/**
|
|
129
|
-
* The vendor identifier of integration
|
|
130
|
-
*/
|
|
131
|
-
vendorIdentifier: 'AUTH0' | 'ZUORA' | 'STRIPE' | 'HUBSPOT' | 'AWS_MARKETPLACE' | 'SNOWFLAKE' | 'SALESFORCE' | 'BIG_QUERY' | 'OPEN_FGA' | 'APP_STORE';
|
|
132
|
-
/**
|
|
133
|
-
* Price billing sync revision data containing billing ID, link URL, and price
|
|
134
|
-
* group package billing ID
|
|
135
|
-
*/
|
|
136
|
-
syncData?: Data.SyncRevisionPriceBillingData | Data.SyncRevisionBillingData | Data.SyncRevisionMarketplaceData | null;
|
|
137
|
-
}
|
|
138
|
-
namespace Data {
|
|
139
|
-
/**
|
|
140
|
-
* Price billing sync revision data containing billing ID, link URL, and price
|
|
141
|
-
* group package billing ID
|
|
142
|
-
*/
|
|
143
|
-
interface SyncRevisionPriceBillingData {
|
|
144
|
-
/**
|
|
145
|
-
* Billing integration id
|
|
146
|
-
*/
|
|
147
|
-
billingId: string;
|
|
148
|
-
/**
|
|
149
|
-
* Billing integration url
|
|
150
|
-
*/
|
|
151
|
-
billingLinkUrl: string;
|
|
152
|
-
/**
|
|
153
|
-
* Price group package billing id
|
|
154
|
-
*/
|
|
155
|
-
priceGroupPackageBillingId: string;
|
|
156
|
-
}
|
|
157
|
-
/**
|
|
158
|
-
* Billing sync revision data containing billing ID and link URL
|
|
159
|
-
*/
|
|
160
|
-
interface SyncRevisionBillingData {
|
|
161
|
-
/**
|
|
162
|
-
* Billing integration id
|
|
163
|
-
*/
|
|
164
|
-
billingId: string;
|
|
165
|
-
/**
|
|
166
|
-
* Billing integration url
|
|
167
|
-
*/
|
|
168
|
-
billingLinkUrl: string;
|
|
169
|
-
}
|
|
170
|
-
/**
|
|
171
|
-
* Marketplace sync revision data containing dimensions
|
|
172
|
-
*/
|
|
173
|
-
interface SyncRevisionMarketplaceData {
|
|
174
|
-
/**
|
|
175
|
-
* Dimensions of the marketplace sync revision
|
|
176
|
-
*/
|
|
177
|
-
dimensions: string;
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
}
|
|
181
32
|
/**
|
|
182
33
|
* External billing or CRM integration link
|
|
183
34
|
*/
|
|
@@ -242,156 +93,6 @@ export declare namespace IntegrationListResponse {
|
|
|
242
93
|
dimensions: string;
|
|
243
94
|
}
|
|
244
95
|
}
|
|
245
|
-
/**
|
|
246
|
-
* Response object
|
|
247
|
-
*/
|
|
248
|
-
export interface IntegrationLinkResponse {
|
|
249
|
-
/**
|
|
250
|
-
* External billing or CRM integration link
|
|
251
|
-
*/
|
|
252
|
-
data: IntegrationLinkResponse.Data;
|
|
253
|
-
}
|
|
254
|
-
export declare namespace IntegrationLinkResponse {
|
|
255
|
-
/**
|
|
256
|
-
* External billing or CRM integration link
|
|
257
|
-
*/
|
|
258
|
-
interface Data {
|
|
259
|
-
/**
|
|
260
|
-
* Integration details
|
|
261
|
-
*/
|
|
262
|
-
id: string;
|
|
263
|
-
/**
|
|
264
|
-
* Synced entity id
|
|
265
|
-
*/
|
|
266
|
-
syncedEntityId: string | null;
|
|
267
|
-
/**
|
|
268
|
-
* The vendor identifier of integration
|
|
269
|
-
*/
|
|
270
|
-
vendorIdentifier: 'AUTH0' | 'ZUORA' | 'STRIPE' | 'HUBSPOT' | 'AWS_MARKETPLACE' | 'SNOWFLAKE' | 'SALESFORCE' | 'BIG_QUERY' | 'OPEN_FGA' | 'APP_STORE';
|
|
271
|
-
/**
|
|
272
|
-
* Price billing sync revision data containing billing ID, link URL, and price
|
|
273
|
-
* group package billing ID
|
|
274
|
-
*/
|
|
275
|
-
syncData?: Data.SyncRevisionPriceBillingData | Data.SyncRevisionBillingData | Data.SyncRevisionMarketplaceData | null;
|
|
276
|
-
}
|
|
277
|
-
namespace Data {
|
|
278
|
-
/**
|
|
279
|
-
* Price billing sync revision data containing billing ID, link URL, and price
|
|
280
|
-
* group package billing ID
|
|
281
|
-
*/
|
|
282
|
-
interface SyncRevisionPriceBillingData {
|
|
283
|
-
/**
|
|
284
|
-
* Billing integration id
|
|
285
|
-
*/
|
|
286
|
-
billingId: string;
|
|
287
|
-
/**
|
|
288
|
-
* Billing integration url
|
|
289
|
-
*/
|
|
290
|
-
billingLinkUrl: string;
|
|
291
|
-
/**
|
|
292
|
-
* Price group package billing id
|
|
293
|
-
*/
|
|
294
|
-
priceGroupPackageBillingId: string;
|
|
295
|
-
}
|
|
296
|
-
/**
|
|
297
|
-
* Billing sync revision data containing billing ID and link URL
|
|
298
|
-
*/
|
|
299
|
-
interface SyncRevisionBillingData {
|
|
300
|
-
/**
|
|
301
|
-
* Billing integration id
|
|
302
|
-
*/
|
|
303
|
-
billingId: string;
|
|
304
|
-
/**
|
|
305
|
-
* Billing integration url
|
|
306
|
-
*/
|
|
307
|
-
billingLinkUrl: string;
|
|
308
|
-
}
|
|
309
|
-
/**
|
|
310
|
-
* Marketplace sync revision data containing dimensions
|
|
311
|
-
*/
|
|
312
|
-
interface SyncRevisionMarketplaceData {
|
|
313
|
-
/**
|
|
314
|
-
* Dimensions of the marketplace sync revision
|
|
315
|
-
*/
|
|
316
|
-
dimensions: string;
|
|
317
|
-
}
|
|
318
|
-
}
|
|
319
|
-
}
|
|
320
|
-
/**
|
|
321
|
-
* Response object
|
|
322
|
-
*/
|
|
323
|
-
export interface IntegrationUnlinkResponse {
|
|
324
|
-
/**
|
|
325
|
-
* External billing or CRM integration link
|
|
326
|
-
*/
|
|
327
|
-
data: IntegrationUnlinkResponse.Data;
|
|
328
|
-
}
|
|
329
|
-
export declare namespace IntegrationUnlinkResponse {
|
|
330
|
-
/**
|
|
331
|
-
* External billing or CRM integration link
|
|
332
|
-
*/
|
|
333
|
-
interface Data {
|
|
334
|
-
/**
|
|
335
|
-
* Integration details
|
|
336
|
-
*/
|
|
337
|
-
id: string;
|
|
338
|
-
/**
|
|
339
|
-
* Synced entity id
|
|
340
|
-
*/
|
|
341
|
-
syncedEntityId: string | null;
|
|
342
|
-
/**
|
|
343
|
-
* The vendor identifier of integration
|
|
344
|
-
*/
|
|
345
|
-
vendorIdentifier: 'AUTH0' | 'ZUORA' | 'STRIPE' | 'HUBSPOT' | 'AWS_MARKETPLACE' | 'SNOWFLAKE' | 'SALESFORCE' | 'BIG_QUERY' | 'OPEN_FGA' | 'APP_STORE';
|
|
346
|
-
/**
|
|
347
|
-
* Price billing sync revision data containing billing ID, link URL, and price
|
|
348
|
-
* group package billing ID
|
|
349
|
-
*/
|
|
350
|
-
syncData?: Data.SyncRevisionPriceBillingData | Data.SyncRevisionBillingData | Data.SyncRevisionMarketplaceData | null;
|
|
351
|
-
}
|
|
352
|
-
namespace Data {
|
|
353
|
-
/**
|
|
354
|
-
* Price billing sync revision data containing billing ID, link URL, and price
|
|
355
|
-
* group package billing ID
|
|
356
|
-
*/
|
|
357
|
-
interface SyncRevisionPriceBillingData {
|
|
358
|
-
/**
|
|
359
|
-
* Billing integration id
|
|
360
|
-
*/
|
|
361
|
-
billingId: string;
|
|
362
|
-
/**
|
|
363
|
-
* Billing integration url
|
|
364
|
-
*/
|
|
365
|
-
billingLinkUrl: string;
|
|
366
|
-
/**
|
|
367
|
-
* Price group package billing id
|
|
368
|
-
*/
|
|
369
|
-
priceGroupPackageBillingId: string;
|
|
370
|
-
}
|
|
371
|
-
/**
|
|
372
|
-
* Billing sync revision data containing billing ID and link URL
|
|
373
|
-
*/
|
|
374
|
-
interface SyncRevisionBillingData {
|
|
375
|
-
/**
|
|
376
|
-
* Billing integration id
|
|
377
|
-
*/
|
|
378
|
-
billingId: string;
|
|
379
|
-
/**
|
|
380
|
-
* Billing integration url
|
|
381
|
-
*/
|
|
382
|
-
billingLinkUrl: string;
|
|
383
|
-
}
|
|
384
|
-
/**
|
|
385
|
-
* Marketplace sync revision data containing dimensions
|
|
386
|
-
*/
|
|
387
|
-
interface SyncRevisionMarketplaceData {
|
|
388
|
-
/**
|
|
389
|
-
* Dimensions of the marketplace sync revision
|
|
390
|
-
*/
|
|
391
|
-
dimensions: string;
|
|
392
|
-
}
|
|
393
|
-
}
|
|
394
|
-
}
|
|
395
96
|
export interface IntegrationRetrieveParams {
|
|
396
97
|
/**
|
|
397
98
|
* Customer slug
|
|
@@ -436,6 +137,6 @@ export interface IntegrationUnlinkParams {
|
|
|
436
137
|
id: string;
|
|
437
138
|
}
|
|
438
139
|
export declare namespace Integrations {
|
|
439
|
-
export { type
|
|
140
|
+
export { type IntegrationListResponse as IntegrationListResponse, type IntegrationListResponsesMyCursorIDPage as IntegrationListResponsesMyCursorIDPage, type IntegrationRetrieveParams as IntegrationRetrieveParams, type IntegrationUpdateParams as IntegrationUpdateParams, type IntegrationListParams as IntegrationListParams, type IntegrationLinkParams as IntegrationLinkParams, type IntegrationUnlinkParams as IntegrationUnlinkParams, };
|
|
440
141
|
}
|
|
441
142
|
//# sourceMappingURL=integrations.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"integrations.d.mts","sourceRoot":"","sources":["../../../src/resources/v1/customers/integrations.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,EAAE,UAAU,EAAE;OACd,EAAE,cAAc,EAAE,KAAK,oBAAoB,EAAE,WAAW,EAAE;OAC1D,EAAE,cAAc,EAAE;AAGzB,qBAAa,YAAa,SAAQ,WAAW;IAC3C;;OAEG;IACH,QAAQ,CACN,aAAa,EAAE,MAAM,EACrB,MAAM,EAAE,yBAAyB,EACjC,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,2BAA2B,CAAC;
|
|
1
|
+
{"version":3,"file":"integrations.d.mts","sourceRoot":"","sources":["../../../src/resources/v1/customers/integrations.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,YAAY;OACjB,EAAE,UAAU,EAAE;OACd,EAAE,cAAc,EAAE,KAAK,oBAAoB,EAAE,WAAW,EAAE;OAC1D,EAAE,cAAc,EAAE;AAGzB,qBAAa,YAAa,SAAQ,WAAW;IAC3C;;OAEG;IACH,QAAQ,CACN,aAAa,EAAE,MAAM,EACrB,MAAM,EAAE,yBAAyB,EACjC,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,YAAY,CAAC,2BAA2B,CAAC;IAKvD;;;OAGG;IACH,MAAM,CACJ,aAAa,EAAE,MAAM,EACrB,MAAM,EAAE,uBAAuB,EAC/B,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,YAAY,CAAC,2BAA2B,CAAC;IAQvD;;;OAGG;IACH,IAAI,CACF,EAAE,EAAE,MAAM,EACV,KAAK,GAAE,qBAAqB,GAAG,IAAI,GAAG,SAAc,EACpD,OAAO,CAAC,EAAE,cAAc,GACvB,WAAW,CAAC,sCAAsC,EAAE,uBAAuB,CAAC;IAQ/E;;;OAGG;IACH,IAAI,CACF,EAAE,EAAE,MAAM,EACV,IAAI,EAAE,qBAAqB,EAC3B,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,YAAY,CAAC,2BAA2B,CAAC;IAIvD;;OAEG;IACH,MAAM,CACJ,aAAa,EAAE,MAAM,EACrB,MAAM,EAAE,uBAAuB,EAC/B,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,YAAY,CAAC,2BAA2B,CAAC;CAIxD;AAED,MAAM,MAAM,sCAAsC,GAAG,cAAc,CAAC,uBAAuB,CAAC,CAAC;AAE7F;;GAEG;AACH,MAAM,WAAW,uBAAuB;IACtC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;IAE9B;;OAEG;IACH,gBAAgB,EACZ,OAAO,GACP,OAAO,GACP,QAAQ,GACR,SAAS,GACT,iBAAiB,GACjB,WAAW,GACX,YAAY,GACZ,WAAW,GACX,UAAU,GACV,WAAW,CAAC;IAEhB;;;OAGG;IACH,QAAQ,CAAC,EACL,uBAAuB,CAAC,4BAA4B,GACpD,uBAAuB,CAAC,uBAAuB,GAC/C,uBAAuB,CAAC,2BAA2B,GACnD,IAAI,CAAC;CACV;AAED,yBAAiB,uBAAuB,CAAC;IACvC;;;OAGG;IACH,UAAiB,4BAA4B;QAC3C;;WAEG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,cAAc,EAAE,MAAM,CAAC;QAEvB;;WAEG;QACH,0BAA0B,EAAE,MAAM,CAAC;KACpC;IAED;;OAEG;IACH,UAAiB,uBAAuB;QACtC;;WAEG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,cAAc,EAAE,MAAM,CAAC;KACxB;IAED;;OAEG;IACH,UAAiB,2BAA2B;QAC1C;;WAEG;QACH,UAAU,EAAE,MAAM,CAAC;KACpB;CACF;AAED,MAAM,WAAW,yBAAyB;IACxC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,MAAM,WAAW,uBAAuB;IACtC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;CAC/B;AAED,MAAM,WAAW,qBAAsB,SAAQ,oBAAoB;IACjE;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;CAC3B;AAED,MAAM,WAAW,qBAAqB;IACpC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;IAEX;;OAEG;IACH,cAAc,EAAE,MAAM,CAAC;IAEvB;;OAEG;IACH,gBAAgB,EACZ,OAAO,GACP,OAAO,GACP,QAAQ,GACR,SAAS,GACT,iBAAiB,GACjB,WAAW,GACX,YAAY,GACZ,WAAW,GACX,UAAU,GACV,WAAW,CAAC;CACjB;AAED,MAAM,WAAW,uBAAuB;IACtC;;OAEG;IACH,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,MAAM,CAAC,OAAO,WAAW,YAAY,CAAC;IACpC,OAAO,EACL,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,sCAAsC,IAAI,sCAAsC,EACrF,KAAK,yBAAyB,IAAI,yBAAyB,EAC3D,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,uBAAuB,IAAI,uBAAuB,GACxD,CAAC;CACH"}
|