@periskope/types 0.6.433 → 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 +22 -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 +4131 -4110
- 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
|
@@ -3513,12 +3513,6 @@ export type Database = {
|
|
|
3513
3513
|
};
|
|
3514
3514
|
Returns: Json;
|
|
3515
3515
|
};
|
|
3516
|
-
get_integration_data: {
|
|
3517
|
-
Args: {
|
|
3518
|
-
org_id_input?: string;
|
|
3519
|
-
};
|
|
3520
|
-
Returns: Json;
|
|
3521
|
-
};
|
|
3522
3516
|
get_message_rule_info: {
|
|
3523
3517
|
Args: {
|
|
3524
3518
|
chat_id_input: string;
|
|
@@ -3529,6 +3523,28 @@ export type Database = {
|
|
|
3529
3523
|
};
|
|
3530
3524
|
Returns: Json;
|
|
3531
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
|
+
};
|
|
3532
3548
|
get_message_workflow_info: {
|
|
3533
3549
|
Args: {
|
|
3534
3550
|
chat_id_input: string;
|