@managespace/sdk 0.1.158-extensions → 0.1.158-extensions-v3
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/README.md +70 -47
- package/dist/extensions/host-bridge.d.ts.map +1 -1
- package/dist/extensions/types.d.ts.map +1 -1
- package/dist/generated/models/accrual-report-filters.d.ts +39 -0
- package/dist/generated/models/accrual-report-filters.d.ts.map +1 -0
- package/dist/generated/models/accrual-report-filters.js +55 -0
- package/dist/generated/models/get-journal-entries200-response.d.ts +41 -0
- package/dist/generated/models/get-journal-entries200-response.d.ts.map +1 -0
- package/dist/generated/models/get-journal-entries200-response.js +55 -0
- package/dist/generated/models/income-report-filters.d.ts +45 -0
- package/dist/generated/models/income-report-filters.d.ts.map +1 -0
- package/dist/generated/models/income-report-filters.js +57 -0
- package/dist/generated/models/journal-entry-entries.d.ts +63 -0
- package/dist/generated/models/journal-entry-entries.d.ts.map +1 -0
- package/dist/generated/models/journal-entry-entries.js +71 -0
- package/dist/generated/models/journal-entry.d.ts +106 -0
- package/dist/generated/models/journal-entry.d.ts.map +1 -0
- package/dist/generated/models/journal-entry.js +100 -0
- package/dist/generated/models/occupancy-statistics-report-filters.d.ts +45 -0
- package/dist/generated/models/occupancy-statistics-report-filters.d.ts.map +1 -0
- package/dist/generated/models/occupancy-statistics-report-filters.js +57 -0
- package/dist/generated/models/payment-gateway-client-token-response.d.ts +47 -0
- package/dist/generated/models/payment-gateway-client-token-response.d.ts.map +1 -0
- package/dist/generated/models/payment-gateway-client-token-response.js +63 -0
- package/dist/generated/models/prepaid-rent-report-filters.d.ts +45 -0
- package/dist/generated/models/prepaid-rent-report-filters.d.ts.map +1 -0
- package/dist/generated/models/prepaid-rent-report-filters.js +57 -0
- package/dist/generated/models/refund-summary-report-filters.d.ts +45 -0
- package/dist/generated/models/refund-summary-report-filters.d.ts.map +1 -0
- package/dist/generated/models/refund-summary-report-filters.js +57 -0
- package/dist/generated/models/security-deposits-report-filters.d.ts +45 -0
- package/dist/generated/models/security-deposits-report-filters.d.ts.map +1 -0
- package/dist/generated/models/security-deposits-report-filters.js +57 -0
- package/package.deploy.json +7 -3
- package/package.json +1 -1
- package/src/extensions/host-bridge.ts +4 -2
- package/src/extensions/types.ts +4 -1
package/README.md
CHANGED
|
@@ -43,6 +43,8 @@ my-extension/
|
|
|
43
43
|
|
|
44
44
|
### 2. package.json
|
|
45
45
|
|
|
46
|
+
**Important:** The `bundle` script is required to create the uploadable ZIP package. It builds the extension, copies the manifest, and creates the ZIP file.
|
|
47
|
+
|
|
46
48
|
```json
|
|
47
49
|
{
|
|
48
50
|
"name": "my-extension",
|
|
@@ -133,17 +135,17 @@ export default defineConfig({
|
|
|
133
135
|
|
|
134
136
|
**Manifest Fields:**
|
|
135
137
|
|
|
136
|
-
| Field
|
|
137
|
-
|
|
138
|
-
| `name`
|
|
139
|
-
| `version`
|
|
140
|
-
| `author`
|
|
141
|
-
| `description` | No
|
|
142
|
-
| `navLabel`
|
|
143
|
-
| `navIcon`
|
|
144
|
-
| `navRoute`
|
|
145
|
-
| `entryPoint`
|
|
146
|
-
| `bff.url`
|
|
138
|
+
| Field | Required | Description |
|
|
139
|
+
| ------------- | -------- | -------------------------------------------------------- |
|
|
140
|
+
| `name` | Yes | Display name of the extension |
|
|
141
|
+
| `version` | Yes | Semantic version (e.g., "1.0.0") |
|
|
142
|
+
| `author` | Yes | Author or company name |
|
|
143
|
+
| `description` | No | Short description |
|
|
144
|
+
| `navLabel` | Yes | Label shown in navigation menu |
|
|
145
|
+
| `navIcon` | Yes | Lucide icon name (e.g., "Users", "Settings", "BarChart") |
|
|
146
|
+
| `navRoute` | Yes | Route path, must start with "/extensions/" |
|
|
147
|
+
| `entryPoint` | Yes | Entry HTML file (usually "index.html") |
|
|
148
|
+
| `bff.url` | No | URL of your Backend for Frontend server |
|
|
147
149
|
|
|
148
150
|
### 6. index.html
|
|
149
151
|
|
|
@@ -291,8 +293,8 @@ const apiFetch = createApiFetch(context);
|
|
|
291
293
|
const response = await apiFetch('/api/crm/customers/queries', {
|
|
292
294
|
method: 'POST',
|
|
293
295
|
body: JSON.stringify({
|
|
294
|
-
pageOptions: { offset: 0, limit: 20 }
|
|
295
|
-
})
|
|
296
|
+
pageOptions: { offset: 0, limit: 20 },
|
|
297
|
+
}),
|
|
296
298
|
});
|
|
297
299
|
const data = await response.json();
|
|
298
300
|
```
|
|
@@ -345,16 +347,15 @@ const response = await apiFetch('/api/crm/customers/queries', {
|
|
|
345
347
|
method: 'POST',
|
|
346
348
|
body: JSON.stringify({
|
|
347
349
|
pageOptions: { offset: 0, limit: 20 },
|
|
348
|
-
filters: [
|
|
349
|
-
|
|
350
|
-
]
|
|
351
|
-
})
|
|
350
|
+
filters: [{ field: 'name', operator: 'contains', value: 'Smith' }],
|
|
351
|
+
}),
|
|
352
352
|
});
|
|
353
353
|
|
|
354
354
|
// Response: { results: Customer[], total: number }
|
|
355
355
|
```
|
|
356
356
|
|
|
357
357
|
**Customer Type:**
|
|
358
|
+
|
|
358
359
|
```typescript
|
|
359
360
|
interface Customer {
|
|
360
361
|
id: string;
|
|
@@ -382,18 +383,19 @@ const customer = await response.json();
|
|
|
382
383
|
#### List Assets
|
|
383
384
|
|
|
384
385
|
```typescript
|
|
385
|
-
const response = await apiFetch(
|
|
386
|
+
const response = await apiFetch(`/api/org/sites/${siteId}/assets`);
|
|
386
387
|
// Response: { results: Asset[], total: number }
|
|
387
388
|
```
|
|
388
389
|
|
|
389
390
|
#### Get Asset by ID
|
|
390
391
|
|
|
391
392
|
```typescript
|
|
392
|
-
const response = await apiFetch(`/api/assets/${assetId}`);
|
|
393
|
+
const response = await apiFetch(`/api/org/sites/${siteId}/assets/${assetId}`);
|
|
393
394
|
const asset = await response.json();
|
|
394
395
|
```
|
|
395
396
|
|
|
396
397
|
**Asset Type:**
|
|
398
|
+
|
|
397
399
|
```typescript
|
|
398
400
|
interface Asset {
|
|
399
401
|
id: string;
|
|
@@ -413,16 +415,17 @@ interface Asset {
|
|
|
413
415
|
#### List Subscriptions
|
|
414
416
|
|
|
415
417
|
```typescript
|
|
416
|
-
const response = await apiFetch('/api/subscriptions/queries', {
|
|
418
|
+
const response = await apiFetch('/api/billing/subscriptions/queries', {
|
|
417
419
|
method: 'POST',
|
|
418
420
|
body: JSON.stringify({
|
|
419
|
-
pageOptions: { offset: 0, limit: 20 }
|
|
420
|
-
})
|
|
421
|
+
pageOptions: { offset: 0, limit: 20 },
|
|
422
|
+
}),
|
|
421
423
|
});
|
|
422
424
|
// Response: { results: Subscription[], total: number }
|
|
423
425
|
```
|
|
424
426
|
|
|
425
427
|
**Subscription Type:**
|
|
428
|
+
|
|
426
429
|
```typescript
|
|
427
430
|
interface Subscription {
|
|
428
431
|
id: string;
|
|
@@ -441,7 +444,7 @@ interface Subscription {
|
|
|
441
444
|
#### List Sites
|
|
442
445
|
|
|
443
446
|
```typescript
|
|
444
|
-
const response = await apiFetch('/api/sites');
|
|
447
|
+
const response = await apiFetch('/api/org/sites');
|
|
445
448
|
// Response: { results: Site[], total: number }
|
|
446
449
|
```
|
|
447
450
|
|
|
@@ -453,8 +456,8 @@ const response = await apiFetch('/api/sites');
|
|
|
453
456
|
const response = await apiFetch('/api/billing/invoices/queries', {
|
|
454
457
|
method: 'POST',
|
|
455
458
|
body: JSON.stringify({
|
|
456
|
-
pageOptions: { offset: 0, limit: 20 }
|
|
457
|
-
})
|
|
459
|
+
pageOptions: { offset: 0, limit: 20 },
|
|
460
|
+
}),
|
|
458
461
|
});
|
|
459
462
|
// Response: { results: Invoice[], total: number }
|
|
460
463
|
```
|
|
@@ -467,8 +470,8 @@ const response = await apiFetch('/api/billing/invoices/queries', {
|
|
|
467
470
|
const response = await apiFetch('/api/billing/payments/queries', {
|
|
468
471
|
method: 'POST',
|
|
469
472
|
body: JSON.stringify({
|
|
470
|
-
pageOptions: { offset: 0, limit: 20 }
|
|
471
|
-
})
|
|
473
|
+
pageOptions: { offset: 0, limit: 20 },
|
|
474
|
+
}),
|
|
472
475
|
});
|
|
473
476
|
// Response: { results: Payment[], total: number }
|
|
474
477
|
```
|
|
@@ -508,10 +511,13 @@ import { cors } from 'hono/cors';
|
|
|
508
511
|
const app = new Hono();
|
|
509
512
|
|
|
510
513
|
// Enable CORS for your ManageSpace instance
|
|
511
|
-
app.use(
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
514
|
+
app.use(
|
|
515
|
+
'*',
|
|
516
|
+
cors({
|
|
517
|
+
origin: ['https://your-managespace-instance.com'],
|
|
518
|
+
credentials: true,
|
|
519
|
+
}),
|
|
520
|
+
);
|
|
515
521
|
|
|
516
522
|
app.get('/api/my-endpoint', async (c) => {
|
|
517
523
|
// Get auth cookie forwarded from extension
|
|
@@ -522,19 +528,22 @@ app.get('/api/my-endpoint', async (c) => {
|
|
|
522
528
|
}
|
|
523
529
|
|
|
524
530
|
// Call ManageSpace API with forwarded credentials
|
|
525
|
-
const response = await fetch(
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
531
|
+
const response = await fetch(
|
|
532
|
+
'https://your-instance/api/crm/customers/queries',
|
|
533
|
+
{
|
|
534
|
+
method: 'POST',
|
|
535
|
+
headers: {
|
|
536
|
+
Cookie: cookie,
|
|
537
|
+
'Content-Type': 'application/json',
|
|
538
|
+
},
|
|
539
|
+
body: JSON.stringify({ pageOptions: { offset: 0, limit: 20 } }),
|
|
530
540
|
},
|
|
531
|
-
|
|
532
|
-
});
|
|
541
|
+
);
|
|
533
542
|
|
|
534
543
|
const data = await response.json();
|
|
535
544
|
|
|
536
545
|
// Enrich or transform data
|
|
537
|
-
const enrichedData = data.results.map(customer => ({
|
|
546
|
+
const enrichedData = data.results.map((customer) => ({
|
|
538
547
|
...customer,
|
|
539
548
|
customField: 'added by BFF',
|
|
540
549
|
}));
|
|
@@ -569,7 +578,7 @@ if (bffFetch) {
|
|
|
569
578
|
### Development
|
|
570
579
|
|
|
571
580
|
```bash
|
|
572
|
-
|
|
581
|
+
bun run dev
|
|
573
582
|
```
|
|
574
583
|
|
|
575
584
|
This starts a local dev server. During development, the extension runs standalone and waits for context from the host.
|
|
@@ -577,21 +586,34 @@ This starts a local dev server. During development, the extension runs standalon
|
|
|
577
586
|
### Build
|
|
578
587
|
|
|
579
588
|
```bash
|
|
580
|
-
|
|
589
|
+
bun run build
|
|
581
590
|
```
|
|
582
591
|
|
|
583
592
|
Creates a production build in `dist/`.
|
|
584
593
|
|
|
585
|
-
### Package for Upload
|
|
594
|
+
### Package for Upload (Required)
|
|
595
|
+
|
|
596
|
+
Every extension must include a `bundle` script in package.json:
|
|
597
|
+
|
|
598
|
+
```json
|
|
599
|
+
{
|
|
600
|
+
"scripts": {
|
|
601
|
+
"bundle": "bun run build && cp manifest.json dist/ && cd dist && zip -r ../bundle.zip ."
|
|
602
|
+
}
|
|
603
|
+
}
|
|
604
|
+
```
|
|
605
|
+
|
|
606
|
+
Run it to create the uploadable package:
|
|
586
607
|
|
|
587
608
|
```bash
|
|
588
|
-
|
|
609
|
+
bun run bundle
|
|
589
610
|
```
|
|
590
611
|
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
- `
|
|
594
|
-
- `
|
|
612
|
+
This creates `bundle.zip` containing:
|
|
613
|
+
|
|
614
|
+
- `index.html` - Entry point
|
|
615
|
+
- `assets/` - JS, CSS bundles
|
|
616
|
+
- `manifest.json` - Extension metadata (copied from project root)
|
|
595
617
|
|
|
596
618
|
Upload this ZIP file through the ManageSpace Admin > Extensions page.
|
|
597
619
|
|
|
@@ -602,6 +624,7 @@ Upload this ZIP file through the ManageSpace Admin > Extensions page.
|
|
|
602
624
|
For `navIcon` in manifest.json, use any Lucide icon name:
|
|
603
625
|
|
|
604
626
|
**Common icons:**
|
|
627
|
+
|
|
605
628
|
- `Users` - People/customers
|
|
606
629
|
- `Building` - Properties/sites
|
|
607
630
|
- `Box` - Assets/inventory
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"host-bridge.d.ts","sourceRoot":"","sources":["../../src/extensions/host-bridge.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"host-bridge.d.ts","sourceRoot":"","sources":["../../src/extensions/host-bridge.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACR,kBAAkB,EAClB,gBAAgB,EAGnB,MAAM,SAAS,CAAC;AAiCjB;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,UAAU,IAAI,OAAO,CAAC,gBAAgB,CAAC,CAQtD;AAED;;;;;;;;;;;;;;;GAeG;AACH,wBAAgB,iBAAiB,IAAI,gBAAgB,GAAG,IAAI,CAE3D;AAED;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAgB,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAM3C;AAED;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAgB,SAAS,CACrB,OAAO,EAAE,MAAM,EACf,OAAO,GAAE,SAAS,GAAG,OAAmB,GACzC,IAAI,CAMN;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,WAAW,IAAI,IAAI,CAGlC;AAED;;;;;;;;;;;;;;;;;;;;;;;GAuBG;AACH,wBAAgB,aAAa,CAAC,OAAO,EAAE,kBAAkB,GAAG,MAAM,IAAI,CAKrE;AAED;;;;;;;;;;;;;;;;;;;;;;;;;GAyBG;AACH,wBAAgB,cAAc,CAC1B,OAAO,EAAE,gBAAgB,GAC1B,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,WAAW,KAAK,OAAO,CAAC,QAAQ,CAAC,CAY5D;AAED;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,wBAAgB,cAAc,CAC1B,OAAO,EAAE,gBAAgB,GAC1B,CAAC,CAAC,IAAI,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,WAAW,KAAK,OAAO,CAAC,QAAQ,CAAC,CAAC,GAAG,IAAI,CAgBrE"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/extensions/types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd,wDAAwD;IACxD,KAAK,EAAE,MAAM,CAAC;IAEd,kCAAkC;IAClC,MAAM,EAAE,MAAM,CAAC;IAEf,+EAA+E;IAC/E,MAAM,EAAE,MAAM,CAAC;IAEf,8CAA8C;IAC9C,WAAW,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAE3B;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,MAAM,WAAW,GACjB;IAAE,IAAI,EAAE,cAAc,CAAC;IAAC,OAAO,EAAE,gBAAgB,CAAA;CAAE,GACnD;IACI,IAAI,EAAE,cAAc,CAAC;IACrB,OAAO,EAAE;QACL,UAAU,EAAE,MAAM,CAAC;QACnB,QAAQ,EAAE,MAAM,CAAC;QACjB,MAAM,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,CAAC;KAC7C,CAAC;CACL,CAAC;AAER;;GAEG;AACH,MAAM,MAAM,gBAAgB,GACtB;IAAE,IAAI,EAAE,UAAU,CAAC;IAAC,OAAO,EAAE;QAAE,IAAI,EAAE,MAAM,CAAA;KAAE,CAAA;CAAE,GAC/C;
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../src/extensions/types.ts"],"names":[],"mappings":"AAAA;;;GAGG;AACH,MAAM,WAAW,gBAAgB;IAC7B;;;;OAIG;IACH,KAAK,EAAE,MAAM,CAAC;IAEd,wDAAwD;IACxD,KAAK,EAAE,MAAM,CAAC;IAEd,kCAAkC;IAClC,MAAM,EAAE,MAAM,CAAC;IAEf,+EAA+E;IAC/E,MAAM,EAAE,MAAM,CAAC;IAEf,8CAA8C;IAC9C,WAAW,EAAE,KAAK,CAAC,MAAM,CAAC,CAAC;IAE3B;;;OAGG;IACH,UAAU,EAAE,MAAM,CAAC;IAEnB;;;OAGG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,MAAM,WAAW,GACjB;IAAE,IAAI,EAAE,cAAc,CAAC;IAAC,OAAO,EAAE,gBAAgB,CAAA;CAAE,GACnD;IACI,IAAI,EAAE,cAAc,CAAC;IACrB,OAAO,EAAE;QACL,UAAU,EAAE,MAAM,CAAC;QACnB,QAAQ,EAAE,MAAM,CAAC;QACjB,MAAM,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,CAAC;KAC7C,CAAC;CACL,CAAC;AAER;;GAEG;AACH,MAAM,MAAM,gBAAgB,GACtB;IAAE,IAAI,EAAE,UAAU,CAAC;IAAC,OAAO,EAAE;QAAE,IAAI,EAAE,MAAM,CAAA;KAAE,CAAA;CAAE,GAC/C;IACI,IAAI,EAAE,YAAY,CAAC;IACnB,OAAO,EAAE;QAAE,OAAO,EAAE,MAAM,CAAC;QAAC,OAAO,EAAE,SAAS,GAAG,OAAO,CAAA;KAAE,CAAC;CAC9D,GACD;IAAE,IAAI,EAAE,OAAO,CAAA;CAAE,CAAC;AAExB;;;GAGG;AACH,MAAM,WAAW,iBAAiB;IAC9B,oCAAoC;IACpC,IAAI,EAAE,MAAM,CAAC;IAEb,uCAAuC;IACvC,OAAO,EAAE,MAAM,CAAC;IAEhB,6BAA6B;IAC7B,MAAM,EAAE,MAAM,CAAC;IAEf,mDAAmD;IACnD,WAAW,CAAC,EAAE,MAAM,CAAC;IAErB,yCAAyC;IACzC,QAAQ,EAAE,MAAM,CAAC;IAEjB;;;OAGG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;;OAGG;IACH,QAAQ,EAAE,MAAM,CAAC;IAEjB,mDAAmD;IACnD,UAAU,EAAE,MAAM,CAAC;IAEnB,wDAAwD;IACxD,GAAG,CAAC,EAAE;QACF,4BAA4B;QAC5B,GAAG,EAAE,MAAM,CAAC;KACf,CAAC;CACL;AAED;;;GAGG;AACH,MAAM,WAAW,WAAW;IACxB,iEAAiE;IACjE,UAAU,EAAE,MAAM,CAAC;IAEnB,gCAAgC;IAChC,QAAQ,EAAE,MAAM,CAAC;IAEjB,kCAAkC;IAClC,MAAM,EAAE,SAAS,GAAG,SAAS,GAAG,SAAS,CAAC;CAC7C;AAED;;GAEG;AACH,MAAM,MAAM,kBAAkB,GAAG,CAAC,KAAK,EAAE,WAAW,KAAK,IAAI,CAAC"}
|
|
@@ -0,0 +1,39 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface AccrualReportFilters
|
|
16
|
+
*/
|
|
17
|
+
export interface AccrualReportFilters {
|
|
18
|
+
/**
|
|
19
|
+
* Start date for the report period
|
|
20
|
+
* @type {Date}
|
|
21
|
+
* @memberof AccrualReportFilters
|
|
22
|
+
*/
|
|
23
|
+
startDate: Date;
|
|
24
|
+
/**
|
|
25
|
+
* End date for the report period
|
|
26
|
+
* @type {Date}
|
|
27
|
+
* @memberof AccrualReportFilters
|
|
28
|
+
*/
|
|
29
|
+
endDate: Date;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* Check if a given object implements the AccrualReportFilters interface.
|
|
33
|
+
*/
|
|
34
|
+
export declare function instanceOfAccrualReportFilters(value: object): value is AccrualReportFilters;
|
|
35
|
+
export declare function AccrualReportFiltersFromJSON(json: any): AccrualReportFilters;
|
|
36
|
+
export declare function AccrualReportFiltersFromJSONTyped(json: any, ignoreDiscriminator: boolean): AccrualReportFilters;
|
|
37
|
+
export declare function AccrualReportFiltersToJSON(json: any): AccrualReportFilters;
|
|
38
|
+
export declare function AccrualReportFiltersToJSONTyped(value?: AccrualReportFilters | null, ignoreDiscriminator?: boolean): any;
|
|
39
|
+
//# sourceMappingURL=accrual-report-filters.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"accrual-report-filters.d.ts","sourceRoot":"","sources":["../../../src/generated/models/accrual-report-filters.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,oBAAoB;IACjC;;;;OAIG;IACH,SAAS,EAAE,IAAI,CAAC;IAChB;;;;OAIG;IACH,OAAO,EAAE,IAAI,CAAC;CACjB;AAED;;GAEG;AACH,wBAAgB,8BAA8B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,oBAAoB,CAI3F;AAED,wBAAgB,4BAA4B,CAAC,IAAI,EAAE,GAAG,GAAG,oBAAoB,CAE5E;AAED,wBAAgB,iCAAiC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,oBAAoB,CAS/G;AAED,wBAAgB,0BAA0B,CAAC,IAAI,EAAE,GAAG,GAAG,oBAAoB,CAE1E;AAED,wBAAgB,+BAA+B,CAAC,KAAK,CAAC,EAAE,oBAAoB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAU9H"}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @ts-nocheck
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* ManageSpace API
|
|
7
|
+
* ManageSpace API Documentation
|
|
8
|
+
*
|
|
9
|
+
* The version of the OpenAPI document: 1.0.0
|
|
10
|
+
*
|
|
11
|
+
*
|
|
12
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
13
|
+
* https://openapi-generator.tech
|
|
14
|
+
* Do not edit the class manually.
|
|
15
|
+
*/
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.instanceOfAccrualReportFilters = instanceOfAccrualReportFilters;
|
|
18
|
+
exports.AccrualReportFiltersFromJSON = AccrualReportFiltersFromJSON;
|
|
19
|
+
exports.AccrualReportFiltersFromJSONTyped = AccrualReportFiltersFromJSONTyped;
|
|
20
|
+
exports.AccrualReportFiltersToJSON = AccrualReportFiltersToJSON;
|
|
21
|
+
exports.AccrualReportFiltersToJSONTyped = AccrualReportFiltersToJSONTyped;
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the AccrualReportFilters interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfAccrualReportFilters(value) {
|
|
26
|
+
if (!('startDate' in value) || value['startDate'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('endDate' in value) || value['endDate'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
return true;
|
|
31
|
+
}
|
|
32
|
+
function AccrualReportFiltersFromJSON(json) {
|
|
33
|
+
return AccrualReportFiltersFromJSONTyped(json, false);
|
|
34
|
+
}
|
|
35
|
+
function AccrualReportFiltersFromJSONTyped(json, ignoreDiscriminator) {
|
|
36
|
+
if (json == null) {
|
|
37
|
+
return json;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
'startDate': (new Date(json['startDate'])),
|
|
41
|
+
'endDate': (new Date(json['endDate'])),
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
function AccrualReportFiltersToJSON(json) {
|
|
45
|
+
return AccrualReportFiltersToJSONTyped(json, false);
|
|
46
|
+
}
|
|
47
|
+
function AccrualReportFiltersToJSONTyped(value, ignoreDiscriminator = false) {
|
|
48
|
+
if (value == null) {
|
|
49
|
+
return value;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
'startDate': ((value['startDate']).toISOString().substring(0, 10)),
|
|
53
|
+
'endDate': ((value['endDate']).toISOString().substring(0, 10)),
|
|
54
|
+
};
|
|
55
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
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 { PageMeta } from './page-meta';
|
|
13
|
+
import type { JournalEntry } from './journal-entry';
|
|
14
|
+
/**
|
|
15
|
+
*
|
|
16
|
+
* @export
|
|
17
|
+
* @interface GetJournalEntries200Response
|
|
18
|
+
*/
|
|
19
|
+
export interface GetJournalEntries200Response {
|
|
20
|
+
/**
|
|
21
|
+
* The pagination metadata
|
|
22
|
+
* @type {PageMeta}
|
|
23
|
+
* @memberof GetJournalEntries200Response
|
|
24
|
+
*/
|
|
25
|
+
pageMeta: PageMeta;
|
|
26
|
+
/**
|
|
27
|
+
*
|
|
28
|
+
* @type {Array<JournalEntry>}
|
|
29
|
+
* @memberof GetJournalEntries200Response
|
|
30
|
+
*/
|
|
31
|
+
results?: Array<JournalEntry>;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* Check if a given object implements the GetJournalEntries200Response interface.
|
|
35
|
+
*/
|
|
36
|
+
export declare function instanceOfGetJournalEntries200Response(value: object): value is GetJournalEntries200Response;
|
|
37
|
+
export declare function GetJournalEntries200ResponseFromJSON(json: any): GetJournalEntries200Response;
|
|
38
|
+
export declare function GetJournalEntries200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetJournalEntries200Response;
|
|
39
|
+
export declare function GetJournalEntries200ResponseToJSON(json: any): GetJournalEntries200Response;
|
|
40
|
+
export declare function GetJournalEntries200ResponseToJSONTyped(value?: GetJournalEntries200Response | null, ignoreDiscriminator?: boolean): any;
|
|
41
|
+
//# sourceMappingURL=get-journal-entries200-response.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"get-journal-entries200-response.d.ts","sourceRoot":"","sources":["../../../src/generated/models/get-journal-entries200-response.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;GAUG;AAGH,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAO5C,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAQpD;;;;GAIG;AACH,MAAM,WAAW,4BAA4B;IACzC;;;;OAIG;IACH,QAAQ,EAAE,QAAQ,CAAC;IACnB;;;;OAIG;IACH,OAAO,CAAC,EAAE,KAAK,CAAC,YAAY,CAAC,CAAC;CACjC;AAED;;GAEG;AACH,wBAAgB,sCAAsC,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,4BAA4B,CAG3G;AAED,wBAAgB,oCAAoC,CAAC,IAAI,EAAE,GAAG,GAAG,4BAA4B,CAE5F;AAED,wBAAgB,yCAAyC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,4BAA4B,CAS/H;AAED,wBAAgB,kCAAkC,CAAC,IAAI,EAAE,GAAG,GAAG,4BAA4B,CAE1F;AAED,wBAAgB,uCAAuC,CAAC,KAAK,CAAC,EAAE,4BAA4B,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAU9I"}
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @ts-nocheck
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* ManageSpace API
|
|
7
|
+
* ManageSpace API Documentation
|
|
8
|
+
*
|
|
9
|
+
* The version of the OpenAPI document: 1.0.0
|
|
10
|
+
*
|
|
11
|
+
*
|
|
12
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
13
|
+
* https://openapi-generator.tech
|
|
14
|
+
* Do not edit the class manually.
|
|
15
|
+
*/
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.instanceOfGetJournalEntries200Response = instanceOfGetJournalEntries200Response;
|
|
18
|
+
exports.GetJournalEntries200ResponseFromJSON = GetJournalEntries200ResponseFromJSON;
|
|
19
|
+
exports.GetJournalEntries200ResponseFromJSONTyped = GetJournalEntries200ResponseFromJSONTyped;
|
|
20
|
+
exports.GetJournalEntries200ResponseToJSON = GetJournalEntries200ResponseToJSON;
|
|
21
|
+
exports.GetJournalEntries200ResponseToJSONTyped = GetJournalEntries200ResponseToJSONTyped;
|
|
22
|
+
const page_meta_1 = require("./page-meta");
|
|
23
|
+
const journal_entry_1 = require("./journal-entry");
|
|
24
|
+
/**
|
|
25
|
+
* Check if a given object implements the GetJournalEntries200Response interface.
|
|
26
|
+
*/
|
|
27
|
+
function instanceOfGetJournalEntries200Response(value) {
|
|
28
|
+
if (!('pageMeta' in value) || value['pageMeta'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
return true;
|
|
31
|
+
}
|
|
32
|
+
function GetJournalEntries200ResponseFromJSON(json) {
|
|
33
|
+
return GetJournalEntries200ResponseFromJSONTyped(json, false);
|
|
34
|
+
}
|
|
35
|
+
function GetJournalEntries200ResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
36
|
+
if (json == null) {
|
|
37
|
+
return json;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
'pageMeta': (0, page_meta_1.PageMetaFromJSON)(json['pageMeta']),
|
|
41
|
+
'results': json['results'] == null ? undefined : (json['results'].map(journal_entry_1.JournalEntryFromJSON)),
|
|
42
|
+
};
|
|
43
|
+
}
|
|
44
|
+
function GetJournalEntries200ResponseToJSON(json) {
|
|
45
|
+
return GetJournalEntries200ResponseToJSONTyped(json, false);
|
|
46
|
+
}
|
|
47
|
+
function GetJournalEntries200ResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
48
|
+
if (value == null) {
|
|
49
|
+
return value;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
'pageMeta': (0, page_meta_1.PageMetaToJSON)(value['pageMeta']),
|
|
53
|
+
'results': value['results'] == null ? undefined : (value['results'].map(journal_entry_1.JournalEntryToJSON)),
|
|
54
|
+
};
|
|
55
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface IncomeReportFilters
|
|
16
|
+
*/
|
|
17
|
+
export interface IncomeReportFilters {
|
|
18
|
+
/**
|
|
19
|
+
* Site ID to filter the report
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof IncomeReportFilters
|
|
22
|
+
*/
|
|
23
|
+
siteId?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Start date for the report period
|
|
26
|
+
* @type {Date}
|
|
27
|
+
* @memberof IncomeReportFilters
|
|
28
|
+
*/
|
|
29
|
+
startDate: Date;
|
|
30
|
+
/**
|
|
31
|
+
* End date for the report period
|
|
32
|
+
* @type {Date}
|
|
33
|
+
* @memberof IncomeReportFilters
|
|
34
|
+
*/
|
|
35
|
+
endDate: Date;
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* Check if a given object implements the IncomeReportFilters interface.
|
|
39
|
+
*/
|
|
40
|
+
export declare function instanceOfIncomeReportFilters(value: object): value is IncomeReportFilters;
|
|
41
|
+
export declare function IncomeReportFiltersFromJSON(json: any): IncomeReportFilters;
|
|
42
|
+
export declare function IncomeReportFiltersFromJSONTyped(json: any, ignoreDiscriminator: boolean): IncomeReportFilters;
|
|
43
|
+
export declare function IncomeReportFiltersToJSON(json: any): IncomeReportFilters;
|
|
44
|
+
export declare function IncomeReportFiltersToJSONTyped(value?: IncomeReportFilters | null, ignoreDiscriminator?: boolean): any;
|
|
45
|
+
//# sourceMappingURL=income-report-filters.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"income-report-filters.d.ts","sourceRoot":"","sources":["../../../src/generated/models/income-report-filters.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,mBAAmB;IAChC;;;;OAIG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,SAAS,EAAE,IAAI,CAAC;IAChB;;;;OAIG;IACH,OAAO,EAAE,IAAI,CAAC;CACjB;AAED;;GAEG;AACH,wBAAgB,6BAA6B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,mBAAmB,CAIzF;AAED,wBAAgB,2BAA2B,CAAC,IAAI,EAAE,GAAG,GAAG,mBAAmB,CAE1E;AAED,wBAAgB,gCAAgC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,mBAAmB,CAU7G;AAED,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,GAAG,GAAG,mBAAmB,CAExE;AAED,wBAAgB,8BAA8B,CAAC,KAAK,CAAC,EAAE,mBAAmB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAW5H"}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// @ts-nocheck
|
|
3
|
+
/* tslint:disable */
|
|
4
|
+
/* eslint-disable */
|
|
5
|
+
/**
|
|
6
|
+
* ManageSpace API
|
|
7
|
+
* ManageSpace API Documentation
|
|
8
|
+
*
|
|
9
|
+
* The version of the OpenAPI document: 1.0.0
|
|
10
|
+
*
|
|
11
|
+
*
|
|
12
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
13
|
+
* https://openapi-generator.tech
|
|
14
|
+
* Do not edit the class manually.
|
|
15
|
+
*/
|
|
16
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
+
exports.instanceOfIncomeReportFilters = instanceOfIncomeReportFilters;
|
|
18
|
+
exports.IncomeReportFiltersFromJSON = IncomeReportFiltersFromJSON;
|
|
19
|
+
exports.IncomeReportFiltersFromJSONTyped = IncomeReportFiltersFromJSONTyped;
|
|
20
|
+
exports.IncomeReportFiltersToJSON = IncomeReportFiltersToJSON;
|
|
21
|
+
exports.IncomeReportFiltersToJSONTyped = IncomeReportFiltersToJSONTyped;
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the IncomeReportFilters interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfIncomeReportFilters(value) {
|
|
26
|
+
if (!('startDate' in value) || value['startDate'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('endDate' in value) || value['endDate'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
return true;
|
|
31
|
+
}
|
|
32
|
+
function IncomeReportFiltersFromJSON(json) {
|
|
33
|
+
return IncomeReportFiltersFromJSONTyped(json, false);
|
|
34
|
+
}
|
|
35
|
+
function IncomeReportFiltersFromJSONTyped(json, ignoreDiscriminator) {
|
|
36
|
+
if (json == null) {
|
|
37
|
+
return json;
|
|
38
|
+
}
|
|
39
|
+
return {
|
|
40
|
+
'siteId': json['siteId'] == null ? undefined : json['siteId'],
|
|
41
|
+
'startDate': (new Date(json['startDate'])),
|
|
42
|
+
'endDate': (new Date(json['endDate'])),
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
function IncomeReportFiltersToJSON(json) {
|
|
46
|
+
return IncomeReportFiltersToJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
function IncomeReportFiltersToJSONTyped(value, ignoreDiscriminator = false) {
|
|
49
|
+
if (value == null) {
|
|
50
|
+
return value;
|
|
51
|
+
}
|
|
52
|
+
return {
|
|
53
|
+
'siteId': value['siteId'],
|
|
54
|
+
'startDate': ((value['startDate']).toISOString().substring(0, 10)),
|
|
55
|
+
'endDate': ((value['endDate']).toISOString().substring(0, 10)),
|
|
56
|
+
};
|
|
57
|
+
}
|
|
@@ -0,0 +1,63 @@
|
|
|
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
|
+
/**
|
|
13
|
+
*
|
|
14
|
+
* @export
|
|
15
|
+
* @interface JournalEntryEntries
|
|
16
|
+
*/
|
|
17
|
+
export interface JournalEntryEntries {
|
|
18
|
+
/**
|
|
19
|
+
* Journal Entry Line Number
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof JournalEntryEntries
|
|
22
|
+
*/
|
|
23
|
+
lineNo: string;
|
|
24
|
+
/**
|
|
25
|
+
* Account number
|
|
26
|
+
* @type {string}
|
|
27
|
+
* @memberof JournalEntryEntries
|
|
28
|
+
*/
|
|
29
|
+
account: string;
|
|
30
|
+
/**
|
|
31
|
+
* Debit Account id associated with this Journal Entry
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof JournalEntryEntries
|
|
34
|
+
*/
|
|
35
|
+
debit: string;
|
|
36
|
+
/**
|
|
37
|
+
* Credit Account id associated with this Journal Entry
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof JournalEntryEntries
|
|
40
|
+
*/
|
|
41
|
+
credit: string;
|
|
42
|
+
/**
|
|
43
|
+
* Journal Entry description
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof JournalEntryEntries
|
|
46
|
+
*/
|
|
47
|
+
description: string;
|
|
48
|
+
/**
|
|
49
|
+
* Customer ID associated with journal entry
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof JournalEntryEntries
|
|
52
|
+
*/
|
|
53
|
+
customerId: string;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Check if a given object implements the JournalEntryEntries interface.
|
|
57
|
+
*/
|
|
58
|
+
export declare function instanceOfJournalEntryEntries(value: object): value is JournalEntryEntries;
|
|
59
|
+
export declare function JournalEntryEntriesFromJSON(json: any): JournalEntryEntries;
|
|
60
|
+
export declare function JournalEntryEntriesFromJSONTyped(json: any, ignoreDiscriminator: boolean): JournalEntryEntries;
|
|
61
|
+
export declare function JournalEntryEntriesToJSON(json: any): JournalEntryEntries;
|
|
62
|
+
export declare function JournalEntryEntriesToJSONTyped(value?: JournalEntryEntries | null, ignoreDiscriminator?: boolean): any;
|
|
63
|
+
//# sourceMappingURL=journal-entry-entries.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"journal-entry-entries.d.ts","sourceRoot":"","sources":["../../../src/generated/models/journal-entry-entries.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;GAUG;AAGH;;;;GAIG;AACH,MAAM,WAAW,mBAAmB;IAChC;;;;OAIG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,OAAO,EAAE,MAAM,CAAC;IAChB;;;;OAIG;IACH,KAAK,EAAE,MAAM,CAAC;IACd;;;;OAIG;IACH,MAAM,EAAE,MAAM,CAAC;IACf;;;;OAIG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;;;OAIG;IACH,UAAU,EAAE,MAAM,CAAC;CACtB;AAED;;GAEG;AACH,wBAAgB,6BAA6B,CAAC,KAAK,EAAE,MAAM,GAAG,KAAK,IAAI,mBAAmB,CAQzF;AAED,wBAAgB,2BAA2B,CAAC,IAAI,EAAE,GAAG,GAAG,mBAAmB,CAE1E;AAED,wBAAgB,gCAAgC,CAAC,IAAI,EAAE,GAAG,EAAE,mBAAmB,EAAE,OAAO,GAAG,mBAAmB,CAa7G;AAED,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,GAAG,GAAG,mBAAmB,CAExE;AAED,wBAAgB,8BAA8B,CAAC,KAAK,CAAC,EAAE,mBAAmB,GAAG,IAAI,EAAE,mBAAmB,GAAE,OAAe,GAAG,GAAG,CAc5H"}
|