@zapier/zapier-sdk 0.56.1 → 0.57.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 +12 -0
- package/README.md +28 -20
- package/dist/experimental.cjs +31 -11
- package/dist/experimental.d.mts +12 -2
- package/dist/experimental.d.ts +10 -0
- package/dist/experimental.d.ts.map +1 -1
- package/dist/experimental.mjs +31 -11
- package/dist/{index-CjP7lGzL.d.mts → index-4QyPPLfu.d.mts} +32 -0
- package/dist/{index-CjP7lGzL.d.ts → index-4QyPPLfu.d.ts} +32 -0
- package/dist/index.cjs +30 -10
- package/dist/index.d.mts +1 -1
- package/dist/index.mjs +30 -10
- package/dist/plugins/tables/createTableFields/index.d.ts +1 -0
- package/dist/plugins/tables/createTableFields/index.d.ts.map +1 -1
- package/dist/plugins/tables/createTableFields/schemas.d.ts +2 -0
- package/dist/plugins/tables/createTableFields/schemas.d.ts.map +1 -1
- package/dist/plugins/tables/createTableRecords/index.d.ts +1 -0
- package/dist/plugins/tables/createTableRecords/index.d.ts.map +1 -1
- package/dist/plugins/tables/createTableRecords/schemas.d.ts +2 -0
- package/dist/plugins/tables/createTableRecords/schemas.d.ts.map +1 -1
- package/dist/plugins/tables/getTableRecord/index.d.ts +1 -0
- package/dist/plugins/tables/getTableRecord/index.d.ts.map +1 -1
- package/dist/plugins/tables/getTableRecord/schemas.d.ts +3 -0
- package/dist/plugins/tables/getTableRecord/schemas.d.ts.map +1 -1
- package/dist/plugins/tables/getTableRecord/schemas.js +2 -0
- package/dist/plugins/tables/listTableFields/index.d.ts +3 -0
- package/dist/plugins/tables/listTableFields/index.d.ts.map +1 -1
- package/dist/plugins/tables/listTableFields/index.js +3 -0
- package/dist/plugins/tables/listTableFields/schemas.d.ts +23 -0
- package/dist/plugins/tables/listTableFields/schemas.d.ts.map +1 -1
- package/dist/plugins/tables/listTableFields/schemas.js +4 -0
- package/dist/plugins/tables/listTableRecords/index.d.ts +3 -0
- package/dist/plugins/tables/listTableRecords/index.d.ts.map +1 -1
- package/dist/plugins/tables/listTableRecords/index.js +7 -1
- package/dist/plugins/tables/listTableRecords/schemas.d.ts +21 -0
- package/dist/plugins/tables/listTableRecords/schemas.d.ts.map +1 -1
- package/dist/plugins/tables/listTableRecords/schemas.js +2 -1
- package/dist/plugins/tables/updateTableRecords/index.d.ts +1 -0
- package/dist/plugins/tables/updateTableRecords/index.d.ts.map +1 -1
- package/dist/plugins/tables/updateTableRecords/schemas.d.ts +2 -0
- package/dist/plugins/tables/updateTableRecords/schemas.d.ts.map +1 -1
- package/dist/plugins/tables/utils.d.ts +6 -0
- package/dist/plugins/tables/utils.d.ts.map +1 -1
- package/dist/plugins/tables/utils.js +6 -0
- package/dist/plugins/triggers/ensureTriggerInbox/index.js +1 -1
- package/dist/sdk.d.ts +20 -0
- package/dist/sdk.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -49,6 +49,7 @@ export function transformFieldItem(apiItem) {
|
|
|
49
49
|
edited_at: apiItem.edited_at,
|
|
50
50
|
options: apiItem.options,
|
|
51
51
|
config: apiItem.config,
|
|
52
|
+
deleted_at: apiItem.deleted_at,
|
|
52
53
|
};
|
|
53
54
|
}
|
|
54
55
|
export function transformRecordItem(apiItem) {
|
|
@@ -57,6 +58,7 @@ export function transformRecordItem(apiItem) {
|
|
|
57
58
|
data: apiItem.data,
|
|
58
59
|
created_at: apiItem.created_at,
|
|
59
60
|
edited_at: apiItem.edited_at,
|
|
61
|
+
deleted_at: apiItem.deleted_at,
|
|
60
62
|
};
|
|
61
63
|
}
|
|
62
64
|
function formatRecordError(fieldId, err) {
|
|
@@ -112,6 +114,10 @@ export const KeyModeSchema = z
|
|
|
112
114
|
.optional()
|
|
113
115
|
.default("names")
|
|
114
116
|
.describe('How to interpret field keys in record data. "names" (default) uses human-readable field names, "ids" uses raw field IDs (f1, f2).');
|
|
117
|
+
export const TrashSchema = z
|
|
118
|
+
.enum(["exclude", "include", "only"])
|
|
119
|
+
.optional()
|
|
120
|
+
.describe('Control soft-deleted item visibility. "exclude" (default) returns active items only, "include" returns both active and soft-deleted, "only" returns soft-deleted items only.');
|
|
115
121
|
const FIELD_ID_PATTERN = /^f\d+$/;
|
|
116
122
|
export function isFieldId(key) {
|
|
117
123
|
return FIELD_ID_PATTERN.test(key);
|
|
@@ -46,7 +46,7 @@ export const ensureTriggerInboxPlugin = definePlugin((sdk) => createPluginMethod
|
|
|
46
46
|
if (notificationUrl !== undefined) {
|
|
47
47
|
requestBody.notification_url = notificationUrl;
|
|
48
48
|
}
|
|
49
|
-
const rawResponse = await api.
|
|
49
|
+
const rawResponse = await api.put("/trigger-inbox/api/v1/inboxes", requestBody, {
|
|
50
50
|
authRequired: true,
|
|
51
51
|
customErrorHandler: ({ status, data }) => {
|
|
52
52
|
if (status === 409) {
|
package/dist/sdk.d.ts
CHANGED
|
@@ -1552,10 +1552,12 @@ export declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOption
|
|
|
1552
1552
|
table: string;
|
|
1553
1553
|
fields?: (string | number)[] | undefined;
|
|
1554
1554
|
fieldKeys?: (string | number)[] | undefined;
|
|
1555
|
+
trash?: "only" | "include" | "exclude" | undefined;
|
|
1555
1556
|
} | {
|
|
1556
1557
|
tableId: string;
|
|
1557
1558
|
fields?: (string | number)[] | undefined;
|
|
1558
1559
|
fieldKeys?: (string | number)[] | undefined;
|
|
1560
|
+
trash?: "only" | "include" | "exclude" | undefined;
|
|
1559
1561
|
} | undefined) => Promise<{
|
|
1560
1562
|
data: {
|
|
1561
1563
|
id: string;
|
|
@@ -1565,6 +1567,7 @@ export declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOption
|
|
|
1565
1567
|
edited_at?: string | undefined;
|
|
1566
1568
|
options?: Record<string, unknown> | undefined;
|
|
1567
1569
|
config?: Record<string, unknown> | undefined;
|
|
1570
|
+
deleted_at?: string | null | undefined;
|
|
1568
1571
|
}[];
|
|
1569
1572
|
}>;
|
|
1570
1573
|
} & {
|
|
@@ -1599,6 +1602,7 @@ export declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOption
|
|
|
1599
1602
|
edited_at?: string | undefined;
|
|
1600
1603
|
options?: Record<string, unknown> | undefined;
|
|
1601
1604
|
config?: Record<string, unknown> | undefined;
|
|
1605
|
+
deleted_at?: string | null | undefined;
|
|
1602
1606
|
}[];
|
|
1603
1607
|
}>;
|
|
1604
1608
|
} & {
|
|
@@ -1638,6 +1642,7 @@ export declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOption
|
|
|
1638
1642
|
id: string;
|
|
1639
1643
|
created_at: string;
|
|
1640
1644
|
edited_at: string;
|
|
1645
|
+
deleted_at?: string | null | undefined;
|
|
1641
1646
|
};
|
|
1642
1647
|
}>;
|
|
1643
1648
|
} & {
|
|
@@ -1662,6 +1667,7 @@ export declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOption
|
|
|
1662
1667
|
pageSize?: number | undefined;
|
|
1663
1668
|
maxItems?: number | undefined;
|
|
1664
1669
|
cursor?: string | undefined;
|
|
1670
|
+
trash?: "only" | "include" | "exclude" | undefined;
|
|
1665
1671
|
} | {
|
|
1666
1672
|
tableId: string;
|
|
1667
1673
|
keyMode: "names" | "ids";
|
|
@@ -1677,6 +1683,7 @@ export declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOption
|
|
|
1677
1683
|
pageSize?: number | undefined;
|
|
1678
1684
|
maxItems?: number | undefined;
|
|
1679
1685
|
cursor?: string | undefined;
|
|
1686
|
+
trash?: "only" | "include" | "exclude" | undefined;
|
|
1680
1687
|
}) & {
|
|
1681
1688
|
cursor?: string;
|
|
1682
1689
|
pageSize?: number;
|
|
@@ -1686,6 +1693,7 @@ export declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOption
|
|
|
1686
1693
|
data: Record<string, unknown>;
|
|
1687
1694
|
created_at: string;
|
|
1688
1695
|
edited_at: string;
|
|
1696
|
+
deleted_at?: string | null | undefined;
|
|
1689
1697
|
}>;
|
|
1690
1698
|
} & {
|
|
1691
1699
|
context: {
|
|
@@ -1712,6 +1720,7 @@ export declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOption
|
|
|
1712
1720
|
id: string;
|
|
1713
1721
|
created_at: string;
|
|
1714
1722
|
edited_at: string;
|
|
1723
|
+
deleted_at?: string | null | undefined;
|
|
1715
1724
|
}[];
|
|
1716
1725
|
}>;
|
|
1717
1726
|
} & {
|
|
@@ -1757,6 +1766,7 @@ export declare function createZapierSdkWithoutRegistry(options?: ZapierSdkOption
|
|
|
1757
1766
|
id: string;
|
|
1758
1767
|
created_at: string;
|
|
1759
1768
|
edited_at: string;
|
|
1769
|
+
deleted_at?: string | null | undefined;
|
|
1760
1770
|
}[];
|
|
1761
1771
|
}>;
|
|
1762
1772
|
} & {
|
|
@@ -3332,10 +3342,12 @@ export declare function createZapierSdk(options?: ZapierSdkOptions): WithAddPlug
|
|
|
3332
3342
|
table: string;
|
|
3333
3343
|
fields?: (string | number)[] | undefined;
|
|
3334
3344
|
fieldKeys?: (string | number)[] | undefined;
|
|
3345
|
+
trash?: "only" | "include" | "exclude" | undefined;
|
|
3335
3346
|
} | {
|
|
3336
3347
|
tableId: string;
|
|
3337
3348
|
fields?: (string | number)[] | undefined;
|
|
3338
3349
|
fieldKeys?: (string | number)[] | undefined;
|
|
3350
|
+
trash?: "only" | "include" | "exclude" | undefined;
|
|
3339
3351
|
} | undefined) => Promise<{
|
|
3340
3352
|
data: {
|
|
3341
3353
|
id: string;
|
|
@@ -3345,6 +3357,7 @@ export declare function createZapierSdk(options?: ZapierSdkOptions): WithAddPlug
|
|
|
3345
3357
|
edited_at?: string | undefined;
|
|
3346
3358
|
options?: Record<string, unknown> | undefined;
|
|
3347
3359
|
config?: Record<string, unknown> | undefined;
|
|
3360
|
+
deleted_at?: string | null | undefined;
|
|
3348
3361
|
}[];
|
|
3349
3362
|
}>;
|
|
3350
3363
|
} & {
|
|
@@ -3379,6 +3392,7 @@ export declare function createZapierSdk(options?: ZapierSdkOptions): WithAddPlug
|
|
|
3379
3392
|
edited_at?: string | undefined;
|
|
3380
3393
|
options?: Record<string, unknown> | undefined;
|
|
3381
3394
|
config?: Record<string, unknown> | undefined;
|
|
3395
|
+
deleted_at?: string | null | undefined;
|
|
3382
3396
|
}[];
|
|
3383
3397
|
}>;
|
|
3384
3398
|
} & {
|
|
@@ -3418,6 +3432,7 @@ export declare function createZapierSdk(options?: ZapierSdkOptions): WithAddPlug
|
|
|
3418
3432
|
id: string;
|
|
3419
3433
|
created_at: string;
|
|
3420
3434
|
edited_at: string;
|
|
3435
|
+
deleted_at?: string | null | undefined;
|
|
3421
3436
|
};
|
|
3422
3437
|
}>;
|
|
3423
3438
|
} & {
|
|
@@ -3442,6 +3457,7 @@ export declare function createZapierSdk(options?: ZapierSdkOptions): WithAddPlug
|
|
|
3442
3457
|
pageSize?: number | undefined;
|
|
3443
3458
|
maxItems?: number | undefined;
|
|
3444
3459
|
cursor?: string | undefined;
|
|
3460
|
+
trash?: "only" | "include" | "exclude" | undefined;
|
|
3445
3461
|
} | {
|
|
3446
3462
|
tableId: string;
|
|
3447
3463
|
keyMode: "names" | "ids";
|
|
@@ -3457,6 +3473,7 @@ export declare function createZapierSdk(options?: ZapierSdkOptions): WithAddPlug
|
|
|
3457
3473
|
pageSize?: number | undefined;
|
|
3458
3474
|
maxItems?: number | undefined;
|
|
3459
3475
|
cursor?: string | undefined;
|
|
3476
|
+
trash?: "only" | "include" | "exclude" | undefined;
|
|
3460
3477
|
}) & {
|
|
3461
3478
|
cursor?: string;
|
|
3462
3479
|
pageSize?: number;
|
|
@@ -3466,6 +3483,7 @@ export declare function createZapierSdk(options?: ZapierSdkOptions): WithAddPlug
|
|
|
3466
3483
|
data: Record<string, unknown>;
|
|
3467
3484
|
created_at: string;
|
|
3468
3485
|
edited_at: string;
|
|
3486
|
+
deleted_at?: string | null | undefined;
|
|
3469
3487
|
}>;
|
|
3470
3488
|
} & {
|
|
3471
3489
|
context: {
|
|
@@ -3492,6 +3510,7 @@ export declare function createZapierSdk(options?: ZapierSdkOptions): WithAddPlug
|
|
|
3492
3510
|
id: string;
|
|
3493
3511
|
created_at: string;
|
|
3494
3512
|
edited_at: string;
|
|
3513
|
+
deleted_at?: string | null | undefined;
|
|
3495
3514
|
}[];
|
|
3496
3515
|
}>;
|
|
3497
3516
|
} & {
|
|
@@ -3537,6 +3556,7 @@ export declare function createZapierSdk(options?: ZapierSdkOptions): WithAddPlug
|
|
|
3537
3556
|
id: string;
|
|
3538
3557
|
created_at: string;
|
|
3539
3558
|
edited_at: string;
|
|
3559
|
+
deleted_at?: string | null | undefined;
|
|
3540
3560
|
}[];
|
|
3541
3561
|
}>;
|
|
3542
3562
|
} & {
|
package/dist/sdk.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"sdk.d.ts","sourceRoot":"","sources":["../src/sdk.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAClD,OAAO,KAAK,EACV,aAAa,EACb,MAAM,EACN,cAAc,EACd,UAAU,EACX,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAiB,KAAK,cAAc,EAAE,MAAM,YAAY,CAAC;AAuDhE,MAAM,WAAW,gBAAiB,SAAQ,cAAc;CAAG;AAE3D,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,gBAAgB;;;;EAE5D;AAED,wBAAgB,SAAS;;cACW,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC;;;cAA1B,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC;;;kBAqBxB,MAAM;oBAAK,cAAc;cAcjD,SAAS,SAAS,cAAc;;kBAnCV,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC;;;mBAqCjC,OAAO;;;kBArCA,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC;;;EAC7D;AAyGD;;;;GAIG;AACH,wBAAgB,8BAA8B,CAAC,OAAO,GAAE,gBAAqB;;cA/GzC,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAwMoqH,CAAC;;;;sBAAiX,CAAC;qBAAyB,CAAC
|
|
1
|
+
{"version":3,"file":"sdk.d.ts","sourceRoot":"","sources":["../src/sdk.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,aAAa,CAAC;AAClD,OAAO,KAAK,EACV,aAAa,EACb,MAAM,EACN,cAAc,EACd,UAAU,EACX,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAiB,KAAK,cAAc,EAAE,MAAM,YAAY,CAAC;AAuDhE,MAAM,WAAW,gBAAiB,SAAQ,cAAc;CAAG;AAE3D,wBAAgB,mBAAmB,CAAC,OAAO,EAAE,gBAAgB;;;;EAE5D;AAED,wBAAgB,SAAS;;cACW,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC;;;cAA1B,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC;;;kBAqBxB,MAAM;oBAAK,cAAc;cAcjD,SAAS,SAAS,cAAc;;kBAnCV,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC;;;mBAqCjC,OAAO;;;kBArCA,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC;;;EAC7D;AAyGD;;;;GAIG;AACH,wBAAgB,8BAA8B,CAAC,OAAO,GAAE,gBAAqB;;cA/GzC,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAwMoqH,CAAC;;;;sBAAiX,CAAC;qBAAyB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GApF9mI;AAED,wBAAgB,eAAe,CAAC,OAAO,GAAE,gBAAqB;;cAtH1B,MAAM,CAAC,MAAM,EAAE,UAAU,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sBAwMoqH,CAAC;;;;sBAAiX,CAAC;qBAAyB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAH9mI;AAED,MAAM,MAAM,SAAS,GAAG,UAAU,CAAC,OAAO,eAAe,CAAC,CAAC"}
|