@periskope/types 0.6.421 → 0.6.424
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.
|
@@ -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
|
@@ -151,6 +151,51 @@ export type Database = {
|
|
|
151
151
|
};
|
|
152
152
|
Relationships: [];
|
|
153
153
|
};
|
|
154
|
+
tbl_gsheet_events: {
|
|
155
|
+
Row: {
|
|
156
|
+
created_at: string;
|
|
157
|
+
error: Json | null;
|
|
158
|
+
event_data: Json;
|
|
159
|
+
event_type: string;
|
|
160
|
+
hook_url: string;
|
|
161
|
+
id: number;
|
|
162
|
+
org_id: string;
|
|
163
|
+
performed_at: string | null;
|
|
164
|
+
retry_count: number | null;
|
|
165
|
+
sheet_id: string;
|
|
166
|
+
spreadsheet_id: string;
|
|
167
|
+
unique_key: string;
|
|
168
|
+
};
|
|
169
|
+
Insert: {
|
|
170
|
+
created_at?: string;
|
|
171
|
+
error?: Json | null;
|
|
172
|
+
event_data: Json;
|
|
173
|
+
event_type: string;
|
|
174
|
+
hook_url: string;
|
|
175
|
+
id?: number;
|
|
176
|
+
org_id: string;
|
|
177
|
+
performed_at?: string | null;
|
|
178
|
+
retry_count?: number | null;
|
|
179
|
+
sheet_id: string;
|
|
180
|
+
spreadsheet_id: string;
|
|
181
|
+
unique_key: string;
|
|
182
|
+
};
|
|
183
|
+
Update: {
|
|
184
|
+
created_at?: string;
|
|
185
|
+
error?: Json | null;
|
|
186
|
+
event_data?: Json;
|
|
187
|
+
event_type?: string;
|
|
188
|
+
hook_url?: string;
|
|
189
|
+
id?: number;
|
|
190
|
+
org_id?: string;
|
|
191
|
+
performed_at?: string | null;
|
|
192
|
+
retry_count?: number | null;
|
|
193
|
+
sheet_id?: string;
|
|
194
|
+
spreadsheet_id?: string;
|
|
195
|
+
unique_key?: string;
|
|
196
|
+
};
|
|
197
|
+
Relationships: [];
|
|
198
|
+
};
|
|
154
199
|
tbl_notification_events: {
|
|
155
200
|
Row: {
|
|
156
201
|
created_at: string;
|
|
@@ -519,6 +564,52 @@ export type Database = {
|
|
|
519
564
|
};
|
|
520
565
|
Relationships: [];
|
|
521
566
|
};
|
|
567
|
+
tbl_ai_tools: {
|
|
568
|
+
Row: {
|
|
569
|
+
auth: Json | null;
|
|
570
|
+
created_at: string;
|
|
571
|
+
description: string;
|
|
572
|
+
is_active: boolean;
|
|
573
|
+
method: string;
|
|
574
|
+
name: string;
|
|
575
|
+
org_id: string;
|
|
576
|
+
parameters: Json | null;
|
|
577
|
+
response_schema: Json | null;
|
|
578
|
+
tool_id: string;
|
|
579
|
+
updated_at: string;
|
|
580
|
+
url: string;
|
|
581
|
+
headers: Json[] | null;
|
|
582
|
+
};
|
|
583
|
+
Insert: {
|
|
584
|
+
auth?: Json | null;
|
|
585
|
+
created_at?: string;
|
|
586
|
+
description: string;
|
|
587
|
+
is_active?: boolean;
|
|
588
|
+
method?: string;
|
|
589
|
+
name: string;
|
|
590
|
+
org_id: string;
|
|
591
|
+
parameters?: Json | null;
|
|
592
|
+
response_schema?: Json | null;
|
|
593
|
+
tool_id?: string;
|
|
594
|
+
updated_at?: string;
|
|
595
|
+
url: string;
|
|
596
|
+
};
|
|
597
|
+
Update: {
|
|
598
|
+
auth?: Json | null;
|
|
599
|
+
created_at?: string;
|
|
600
|
+
description?: string;
|
|
601
|
+
is_active?: boolean;
|
|
602
|
+
method?: string;
|
|
603
|
+
name?: string;
|
|
604
|
+
org_id?: string;
|
|
605
|
+
parameters?: Json | null;
|
|
606
|
+
response_schema?: Json | null;
|
|
607
|
+
tool_id?: string;
|
|
608
|
+
updated_at?: string;
|
|
609
|
+
url?: string;
|
|
610
|
+
};
|
|
611
|
+
Relationships: [];
|
|
612
|
+
};
|
|
522
613
|
tbl_api_logs: {
|
|
523
614
|
Row: {
|
|
524
615
|
org_id: string;
|