@periskope/types 0.6.432 → 0.6.434
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/dist/billing.types.d.ts +14 -0
- package/dist/billing.types.d.ts.map +1 -0
- package/dist/billing.types.js +2 -0
- package/dist/supabase.types.d.ts +23 -6
- package/dist/supabase.types.d.ts.map +1 -1
- package/mod_json_type.ps1 +108 -108
- package/mod_json_type.sh +22 -22
- package/package.json +19 -19
- package/src/index.ts +4 -4
- package/src/object.types.ts +109 -109
- package/src/rules.types.ts +3026 -3026
- package/src/supabase.types.ts +24 -3
- package/src/types.ts +1793 -1793
- package/src/workflows.types.ts +1296 -1296
- package/tsconfig.json +37 -37
- package/tsconfig.tsbuildinfo +1 -0
- package/update_package.ps1 +21 -21
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
export type PeriskopePlanInvoice = {
|
|
2
|
+
lines: {
|
|
3
|
+
data: {
|
|
4
|
+
id: string;
|
|
5
|
+
description: string;
|
|
6
|
+
amount: number;
|
|
7
|
+
}[];
|
|
8
|
+
};
|
|
9
|
+
total: number;
|
|
10
|
+
starting_balance: number;
|
|
11
|
+
ending_balance: number;
|
|
12
|
+
amount_due: number;
|
|
13
|
+
};
|
|
14
|
+
//# sourceMappingURL=billing.types.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"billing.types.d.ts","sourceRoot":"","sources":["../src/billing.types.ts"],"names":[],"mappings":"AAAA,MAAM,MAAM,oBAAoB,GAAG;IAC/B,KAAK,EAAE;QACL,IAAI,EAAE;YACJ,EAAE,EAAE,MAAM,CAAC;YACX,WAAW,EAAE,MAAM,CAAC;YACpB,MAAM,EAAE,MAAM,CAAA;SACf,EAAE,CAAC;KACL,CAAA;IACD,KAAK,EAAE,MAAM,CAAC;IACd,gBAAgB,EAAE,MAAM,CAAC;IACzB,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,EAAE,MAAM,CAAC;CACpB,CAAA"}
|
package/dist/supabase.types.d.ts
CHANGED
|
@@ -3460,6 +3460,7 @@ export type Database = {
|
|
|
3460
3460
|
Args: {
|
|
3461
3461
|
org_id_input: string;
|
|
3462
3462
|
sync_wa_unread_count?: boolean;
|
|
3463
|
+
org_phone_input?: string[];
|
|
3463
3464
|
};
|
|
3464
3465
|
Returns: Json;
|
|
3465
3466
|
};
|
|
@@ -3512,12 +3513,6 @@ export type Database = {
|
|
|
3512
3513
|
};
|
|
3513
3514
|
Returns: Json;
|
|
3514
3515
|
};
|
|
3515
|
-
get_integration_data: {
|
|
3516
|
-
Args: {
|
|
3517
|
-
org_id_input?: string;
|
|
3518
|
-
};
|
|
3519
|
-
Returns: Json;
|
|
3520
|
-
};
|
|
3521
3516
|
get_message_rule_info: {
|
|
3522
3517
|
Args: {
|
|
3523
3518
|
chat_id_input: string;
|
|
@@ -3528,6 +3523,28 @@ export type Database = {
|
|
|
3528
3523
|
};
|
|
3529
3524
|
Returns: Json;
|
|
3530
3525
|
};
|
|
3526
|
+
get_integration_data: {
|
|
3527
|
+
Args: {
|
|
3528
|
+
org_id_input?: string;
|
|
3529
|
+
};
|
|
3530
|
+
Returns: Json;
|
|
3531
|
+
};
|
|
3532
|
+
get_media_library: {
|
|
3533
|
+
Args: {
|
|
3534
|
+
org_id_input: string;
|
|
3535
|
+
type_input: string;
|
|
3536
|
+
search_query?: string;
|
|
3537
|
+
limit_input?: number;
|
|
3538
|
+
offset_input?: number;
|
|
3539
|
+
};
|
|
3540
|
+
Returns: {
|
|
3541
|
+
id: string;
|
|
3542
|
+
name: string;
|
|
3543
|
+
created_at: string;
|
|
3544
|
+
updated_at: string;
|
|
3545
|
+
metadata: Json;
|
|
3546
|
+
}[];
|
|
3547
|
+
};
|
|
3531
3548
|
get_message_workflow_info: {
|
|
3532
3549
|
Args: {
|
|
3533
3550
|
chat_id_input: string;
|