@periskope/types 0.6.93 → 0.6.94
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/supabase.types.d.ts +6 -0
- package/dist/types.d.ts +13 -6
- package/dist/types.js +8 -4
- package/mod_json_type.ps1 +108 -108
- package/package.json +16 -16
- package/supabase.types.ts +6 -0
- package/tsconfig.json +105 -105
- package/types.ts +16 -5
- package/update_package.ps1 +21 -21
package/dist/supabase.types.d.ts
CHANGED
|
@@ -586,6 +586,7 @@ export type Database = {
|
|
|
586
586
|
assigned_by: string | null;
|
|
587
587
|
assignee: string | null;
|
|
588
588
|
chat_id: string;
|
|
589
|
+
closed_at: string | null;
|
|
589
590
|
created_at: string;
|
|
590
591
|
due_date: string | null;
|
|
591
592
|
hubspot_metadata: Json | null;
|
|
@@ -599,11 +600,13 @@ export type Database = {
|
|
|
599
600
|
status: Database['public']['Enums']['enum_chat_tickets_status'] | null;
|
|
600
601
|
subject: string;
|
|
601
602
|
ticket_id: string;
|
|
603
|
+
ticket_metadata: Json | null;
|
|
602
604
|
};
|
|
603
605
|
Insert: {
|
|
604
606
|
assigned_by?: string | null;
|
|
605
607
|
assignee?: string | null;
|
|
606
608
|
chat_id: string;
|
|
609
|
+
closed_at?: string | null;
|
|
607
610
|
created_at?: string;
|
|
608
611
|
due_date?: string | null;
|
|
609
612
|
hubspot_metadata?: Json | null;
|
|
@@ -617,11 +620,13 @@ export type Database = {
|
|
|
617
620
|
status?: Database['public']['Enums']['enum_chat_tickets_status'] | null;
|
|
618
621
|
subject: string;
|
|
619
622
|
ticket_id?: string;
|
|
623
|
+
ticket_metadata?: Json | null;
|
|
620
624
|
};
|
|
621
625
|
Update: {
|
|
622
626
|
assigned_by?: string | null;
|
|
623
627
|
assignee?: string | null;
|
|
624
628
|
chat_id?: string;
|
|
629
|
+
closed_at?: string | null;
|
|
625
630
|
created_at?: string;
|
|
626
631
|
due_date?: string | null;
|
|
627
632
|
hubspot_metadata?: Json | null;
|
|
@@ -635,6 +640,7 @@ export type Database = {
|
|
|
635
640
|
status?: Database['public']['Enums']['enum_chat_tickets_status'] | null;
|
|
636
641
|
subject?: string;
|
|
637
642
|
ticket_id?: string;
|
|
643
|
+
ticket_metadata?: Json | null;
|
|
638
644
|
};
|
|
639
645
|
Relationships: [
|
|
640
646
|
{
|
package/dist/types.d.ts
CHANGED
|
@@ -9,16 +9,18 @@ export type WhatsappChat = Chat & {
|
|
|
9
9
|
};
|
|
10
10
|
export declare enum AllPlans {
|
|
11
11
|
FREE_TRIAL = "free-trial",
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
12
|
+
ENTERPRISE = "enterprise",
|
|
13
|
+
MONTHLY_STARTER_SINGLE = "monthly-starter-single",
|
|
14
|
+
YEARLY_STARTER_SINGLE = "yearly-starter-single",
|
|
15
|
+
MONTHLY_PRO_SINGLE = "monthly-pro-single",
|
|
16
|
+
YEARLY_PRO_SINGLE = "yearly-pro-single"
|
|
17
17
|
}
|
|
18
18
|
export type Frequency = 'yearly' | 'monthly' | 'weekly' | 'custom';
|
|
19
19
|
export type Enterprise = `${string}-enterprise`;
|
|
20
20
|
export type OrgPlanEnterprise = {
|
|
21
|
+
subscription_id: string;
|
|
21
22
|
plan_id: Enterprise;
|
|
23
|
+
interval: number;
|
|
22
24
|
frequency: Frequency;
|
|
23
25
|
user_limit: number;
|
|
24
26
|
phone_limit: number;
|
|
@@ -26,12 +28,14 @@ export type OrgPlanEnterprise = {
|
|
|
26
28
|
current_period_end: number | null;
|
|
27
29
|
};
|
|
28
30
|
export type OrgPlanNonEnterprise = {
|
|
31
|
+
subscription_id: string;
|
|
29
32
|
plan_id: AllPlans;
|
|
30
33
|
interval: number;
|
|
31
34
|
frequency: Frequency;
|
|
32
35
|
user_limit: number;
|
|
33
36
|
phone_limit: number;
|
|
34
|
-
|
|
37
|
+
current_period_end: number;
|
|
38
|
+
current_period_start: number;
|
|
35
39
|
};
|
|
36
40
|
export type OrgPlan<T extends AllPlans | Enterprise> = T extends Enterprise ? OrgPlanEnterprise : T extends AllPlans ? OrgPlanNonEnterprise : never;
|
|
37
41
|
export type MicrosurveyData = {
|
|
@@ -227,6 +231,9 @@ export type StripeSubscription = _Stripe.Subscription;
|
|
|
227
231
|
export type StripeCustomer = _Stripe.Customer;
|
|
228
232
|
export type StripeCoupon = _Stripe.Coupon;
|
|
229
233
|
export type StripePrice = _Stripe.Price;
|
|
234
|
+
export type Stripe = _Stripe;
|
|
235
|
+
export type StripeUpcomingInvoice = _Stripe.UpcomingInvoice;
|
|
236
|
+
export type StripeLineItem = _Stripe.Checkout.SessionCreateParams.LineItem;
|
|
230
237
|
export type PhoneStateType = {
|
|
231
238
|
loading: boolean;
|
|
232
239
|
state: string;
|
package/dist/types.js
CHANGED
|
@@ -5,11 +5,15 @@ exports.IntegrationLogType = exports.SUPPORTED_TYPES = exports.enumChatColors =
|
|
|
5
5
|
var AllPlans;
|
|
6
6
|
(function (AllPlans) {
|
|
7
7
|
AllPlans["FREE_TRIAL"] = "free-trial";
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
// MONTHLY_STARTER = 'monthly-starter',
|
|
9
|
+
// YEARLY_STARTER = 'yearly-starter',
|
|
10
|
+
// MONTHLY_PRO = 'monthly-pro',
|
|
11
|
+
// YEARLY_PRO = 'yearly-pro',
|
|
12
12
|
AllPlans["ENTERPRISE"] = "enterprise";
|
|
13
|
+
AllPlans["MONTHLY_STARTER_SINGLE"] = "monthly-starter-single";
|
|
14
|
+
AllPlans["YEARLY_STARTER_SINGLE"] = "yearly-starter-single";
|
|
15
|
+
AllPlans["MONTHLY_PRO_SINGLE"] = "monthly-pro-single";
|
|
16
|
+
AllPlans["YEARLY_PRO_SINGLE"] = "yearly-pro-single";
|
|
13
17
|
})(AllPlans || (exports.AllPlans = AllPlans = {}));
|
|
14
18
|
/* -------------------------------- CONSTANTS ------------------------------- */
|
|
15
19
|
exports.labelColors = [
|
package/mod_json_type.ps1
CHANGED
|
@@ -1,109 +1,109 @@
|
|
|
1
|
-
# Define the path to the TypeScript file
|
|
2
|
-
$filePath = ".\supabase.types.ts"
|
|
3
|
-
|
|
4
|
-
# Read the content of the file as a single string
|
|
5
|
-
$fileContent = Get-Content $filePath -Raw
|
|
6
|
-
|
|
7
|
-
# Define the current and new type definitions
|
|
8
|
-
$oldTypeDefinition = 'export type Json =\s*\| string\s*\| number\s*\| boolean\s*\| null\s*\| \{ \[key: string\]: Json \| undefined \}\s*\| Json\[\]'
|
|
9
|
-
$newTypeDefinition = 'export type Json = { [key: string]: any } | any'
|
|
10
|
-
|
|
11
|
-
# Replace the old type definition with the new one
|
|
12
|
-
$updatedContent = $fileContent -replace $oldTypeDefinition, $newTypeDefinition
|
|
13
|
-
|
|
14
|
-
# Update interface to type
|
|
15
|
-
$oldText = 'export interface Database '
|
|
16
|
-
$newText = 'export type Database = '
|
|
17
|
-
|
|
18
|
-
$updatedContent = $updatedContent -replace $oldText, $newText
|
|
19
|
-
|
|
20
|
-
# # Append the new type definition if it doesn't exist
|
|
21
|
-
# $addContent = @"
|
|
22
|
-
# type PublicSchema = Database[Extract<keyof Database, "public">]
|
|
23
|
-
|
|
24
|
-
# export type Tables<
|
|
25
|
-
# PublicTableNameOrOptions extends
|
|
26
|
-
# | keyof (PublicSchema["Tables"] & PublicSchema["Views"])
|
|
27
|
-
# | { schema: keyof Database },
|
|
28
|
-
# TableName extends PublicTableNameOrOptions extends { schema: keyof Database }
|
|
29
|
-
# ? keyof (Database[PublicTableNameOrOptions["schema"]]["Tables"] &
|
|
30
|
-
# Database[PublicTableNameOrOptions["schema"]]["Views"])
|
|
31
|
-
# : never = never,
|
|
32
|
-
# > = PublicTableNameOrOptions extends { schema: keyof Database }
|
|
33
|
-
# ? (Database[PublicTableNameOrOptions["schema"]]["Tables"] &
|
|
34
|
-
# Database[PublicTableNameOrOptions["schema"]]["Views"])[TableName] extends {
|
|
35
|
-
# Row: infer R
|
|
36
|
-
# }
|
|
37
|
-
# ? R
|
|
38
|
-
# : never
|
|
39
|
-
# : PublicTableNameOrOptions extends keyof (PublicSchema["Tables"] &
|
|
40
|
-
# PublicSchema["Views"])
|
|
41
|
-
# ? (PublicSchema["Tables"] &
|
|
42
|
-
# PublicSchema["Views"])[PublicTableNameOrOptions] extends {
|
|
43
|
-
# Row: infer R
|
|
44
|
-
# }
|
|
45
|
-
# ? R
|
|
46
|
-
# : never
|
|
47
|
-
# : never
|
|
48
|
-
|
|
49
|
-
# export type TablesInsert<
|
|
50
|
-
# PublicTableNameOrOptions extends
|
|
51
|
-
# | keyof PublicSchema["Tables"]
|
|
52
|
-
# | { schema: keyof Database },
|
|
53
|
-
# TableName extends PublicTableNameOrOptions extends { schema: keyof Database }
|
|
54
|
-
# ? keyof Database[PublicTableNameOrOptions["schema"]]["Tables"]
|
|
55
|
-
# : never = never,
|
|
56
|
-
# > = PublicTableNameOrOptions extends { schema: keyof Database }
|
|
57
|
-
# ? Database[PublicTableNameOrOptions["schema"]]["Tables"][TableName] extends {
|
|
58
|
-
# Insert: infer I
|
|
59
|
-
# }
|
|
60
|
-
# ? I
|
|
61
|
-
# : never
|
|
62
|
-
# : PublicTableNameOrOptions extends keyof PublicSchema["Tables"]
|
|
63
|
-
# ? PublicSchema["Tables"][PublicTableNameOrOptions] extends {
|
|
64
|
-
# Insert: infer I
|
|
65
|
-
# }
|
|
66
|
-
# ? I
|
|
67
|
-
# : never
|
|
68
|
-
# : never
|
|
69
|
-
|
|
70
|
-
# export type TablesUpdate<
|
|
71
|
-
# PublicTableNameOrOptions extends
|
|
72
|
-
# | keyof PublicSchema["Tables"]
|
|
73
|
-
# | { schema: keyof Database },
|
|
74
|
-
# TableName extends PublicTableNameOrOptions extends { schema: keyof Database }
|
|
75
|
-
# ? keyof Database[PublicTableNameOrOptions["schema"]]["Tables"]
|
|
76
|
-
# : never = never,
|
|
77
|
-
# > = PublicTableNameOrOptions extends { schema: keyof Database }
|
|
78
|
-
# ? Database[PublicTableNameOrOptions["schema"]]["Tables"][TableName] extends {
|
|
79
|
-
# Update: infer U
|
|
80
|
-
# }
|
|
81
|
-
# ? U
|
|
82
|
-
# : never
|
|
83
|
-
# : PublicTableNameOrOptions extends keyof PublicSchema["Tables"]
|
|
84
|
-
# ? PublicSchema["Tables"][PublicTableNameOrOptions] extends {
|
|
85
|
-
# Update: infer U
|
|
86
|
-
# }
|
|
87
|
-
# ? U
|
|
88
|
-
# : never
|
|
89
|
-
# : never
|
|
90
|
-
|
|
91
|
-
# export type Enums<
|
|
92
|
-
# PublicEnumNameOrOptions extends
|
|
93
|
-
# | keyof PublicSchema["Enums"]
|
|
94
|
-
# | { schema: keyof Database },
|
|
95
|
-
# EnumName extends PublicEnumNameOrOptions extends { schema: keyof Database }
|
|
96
|
-
# ? keyof Database[PublicEnumNameOrOptions["schema"]]["Enums"]
|
|
97
|
-
# : never = never,
|
|
98
|
-
# > = PublicEnumNameOrOptions extends { schema: keyof Database }
|
|
99
|
-
# ? Database[PublicEnumNameOrOptions["schema"]]["Enums"][EnumName]
|
|
100
|
-
# : PublicEnumNameOrOptions extends keyof PublicSchema["Enums"]
|
|
101
|
-
# ? PublicSchema["Enums"][PublicEnumNameOrOptions]
|
|
102
|
-
# : never
|
|
103
|
-
# "@
|
|
104
|
-
|
|
105
|
-
# # Append the new content to the updated content
|
|
106
|
-
# $updatedContent += $addContent
|
|
107
|
-
|
|
108
|
-
# Write the updated content back to the file
|
|
1
|
+
# Define the path to the TypeScript file
|
|
2
|
+
$filePath = ".\supabase.types.ts"
|
|
3
|
+
|
|
4
|
+
# Read the content of the file as a single string
|
|
5
|
+
$fileContent = Get-Content $filePath -Raw
|
|
6
|
+
|
|
7
|
+
# Define the current and new type definitions
|
|
8
|
+
$oldTypeDefinition = 'export type Json =\s*\| string\s*\| number\s*\| boolean\s*\| null\s*\| \{ \[key: string\]: Json \| undefined \}\s*\| Json\[\]'
|
|
9
|
+
$newTypeDefinition = 'export type Json = { [key: string]: any } | any'
|
|
10
|
+
|
|
11
|
+
# Replace the old type definition with the new one
|
|
12
|
+
$updatedContent = $fileContent -replace $oldTypeDefinition, $newTypeDefinition
|
|
13
|
+
|
|
14
|
+
# Update interface to type
|
|
15
|
+
$oldText = 'export interface Database '
|
|
16
|
+
$newText = 'export type Database = '
|
|
17
|
+
|
|
18
|
+
$updatedContent = $updatedContent -replace $oldText, $newText
|
|
19
|
+
|
|
20
|
+
# # Append the new type definition if it doesn't exist
|
|
21
|
+
# $addContent = @"
|
|
22
|
+
# type PublicSchema = Database[Extract<keyof Database, "public">]
|
|
23
|
+
|
|
24
|
+
# export type Tables<
|
|
25
|
+
# PublicTableNameOrOptions extends
|
|
26
|
+
# | keyof (PublicSchema["Tables"] & PublicSchema["Views"])
|
|
27
|
+
# | { schema: keyof Database },
|
|
28
|
+
# TableName extends PublicTableNameOrOptions extends { schema: keyof Database }
|
|
29
|
+
# ? keyof (Database[PublicTableNameOrOptions["schema"]]["Tables"] &
|
|
30
|
+
# Database[PublicTableNameOrOptions["schema"]]["Views"])
|
|
31
|
+
# : never = never,
|
|
32
|
+
# > = PublicTableNameOrOptions extends { schema: keyof Database }
|
|
33
|
+
# ? (Database[PublicTableNameOrOptions["schema"]]["Tables"] &
|
|
34
|
+
# Database[PublicTableNameOrOptions["schema"]]["Views"])[TableName] extends {
|
|
35
|
+
# Row: infer R
|
|
36
|
+
# }
|
|
37
|
+
# ? R
|
|
38
|
+
# : never
|
|
39
|
+
# : PublicTableNameOrOptions extends keyof (PublicSchema["Tables"] &
|
|
40
|
+
# PublicSchema["Views"])
|
|
41
|
+
# ? (PublicSchema["Tables"] &
|
|
42
|
+
# PublicSchema["Views"])[PublicTableNameOrOptions] extends {
|
|
43
|
+
# Row: infer R
|
|
44
|
+
# }
|
|
45
|
+
# ? R
|
|
46
|
+
# : never
|
|
47
|
+
# : never
|
|
48
|
+
|
|
49
|
+
# export type TablesInsert<
|
|
50
|
+
# PublicTableNameOrOptions extends
|
|
51
|
+
# | keyof PublicSchema["Tables"]
|
|
52
|
+
# | { schema: keyof Database },
|
|
53
|
+
# TableName extends PublicTableNameOrOptions extends { schema: keyof Database }
|
|
54
|
+
# ? keyof Database[PublicTableNameOrOptions["schema"]]["Tables"]
|
|
55
|
+
# : never = never,
|
|
56
|
+
# > = PublicTableNameOrOptions extends { schema: keyof Database }
|
|
57
|
+
# ? Database[PublicTableNameOrOptions["schema"]]["Tables"][TableName] extends {
|
|
58
|
+
# Insert: infer I
|
|
59
|
+
# }
|
|
60
|
+
# ? I
|
|
61
|
+
# : never
|
|
62
|
+
# : PublicTableNameOrOptions extends keyof PublicSchema["Tables"]
|
|
63
|
+
# ? PublicSchema["Tables"][PublicTableNameOrOptions] extends {
|
|
64
|
+
# Insert: infer I
|
|
65
|
+
# }
|
|
66
|
+
# ? I
|
|
67
|
+
# : never
|
|
68
|
+
# : never
|
|
69
|
+
|
|
70
|
+
# export type TablesUpdate<
|
|
71
|
+
# PublicTableNameOrOptions extends
|
|
72
|
+
# | keyof PublicSchema["Tables"]
|
|
73
|
+
# | { schema: keyof Database },
|
|
74
|
+
# TableName extends PublicTableNameOrOptions extends { schema: keyof Database }
|
|
75
|
+
# ? keyof Database[PublicTableNameOrOptions["schema"]]["Tables"]
|
|
76
|
+
# : never = never,
|
|
77
|
+
# > = PublicTableNameOrOptions extends { schema: keyof Database }
|
|
78
|
+
# ? Database[PublicTableNameOrOptions["schema"]]["Tables"][TableName] extends {
|
|
79
|
+
# Update: infer U
|
|
80
|
+
# }
|
|
81
|
+
# ? U
|
|
82
|
+
# : never
|
|
83
|
+
# : PublicTableNameOrOptions extends keyof PublicSchema["Tables"]
|
|
84
|
+
# ? PublicSchema["Tables"][PublicTableNameOrOptions] extends {
|
|
85
|
+
# Update: infer U
|
|
86
|
+
# }
|
|
87
|
+
# ? U
|
|
88
|
+
# : never
|
|
89
|
+
# : never
|
|
90
|
+
|
|
91
|
+
# export type Enums<
|
|
92
|
+
# PublicEnumNameOrOptions extends
|
|
93
|
+
# | keyof PublicSchema["Enums"]
|
|
94
|
+
# | { schema: keyof Database },
|
|
95
|
+
# EnumName extends PublicEnumNameOrOptions extends { schema: keyof Database }
|
|
96
|
+
# ? keyof Database[PublicEnumNameOrOptions["schema"]]["Enums"]
|
|
97
|
+
# : never = never,
|
|
98
|
+
# > = PublicEnumNameOrOptions extends { schema: keyof Database }
|
|
99
|
+
# ? Database[PublicEnumNameOrOptions["schema"]]["Enums"][EnumName]
|
|
100
|
+
# : PublicEnumNameOrOptions extends keyof PublicSchema["Enums"]
|
|
101
|
+
# ? PublicSchema["Enums"][PublicEnumNameOrOptions]
|
|
102
|
+
# : never
|
|
103
|
+
# "@
|
|
104
|
+
|
|
105
|
+
# # Append the new content to the updated content
|
|
106
|
+
# $updatedContent += $addContent
|
|
107
|
+
|
|
108
|
+
# Write the updated content back to the file
|
|
109
109
|
$updatedContent | Set-Content $filePath
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
2
|
+
"name": "@periskope/types",
|
|
3
|
+
"version": "0.6.94",
|
|
4
|
+
"private": false,
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"dependencies": {
|
|
8
|
+
"@periskope/whatsapp-web.js": "1.23.1-alpha.exodus.8",
|
|
9
|
+
"@types/pg": "8.11.2",
|
|
10
|
+
"pg": "^8.11.3",
|
|
11
|
+
"stripe": "^14.19.0",
|
|
12
|
+
"ts-node": "^10.9.2",
|
|
13
|
+
"type-fest": "^4.8.3"
|
|
14
|
+
},
|
|
15
|
+
"scripts": {
|
|
16
|
+
"update-package": "tsc && npm publish --access public"
|
|
17
|
+
}
|
|
18
18
|
}
|
package/supabase.types.ts
CHANGED
|
@@ -591,6 +591,7 @@ export type Database = {
|
|
|
591
591
|
assigned_by: string | null;
|
|
592
592
|
assignee: string | null;
|
|
593
593
|
chat_id: string;
|
|
594
|
+
closed_at: string | null;
|
|
594
595
|
created_at: string;
|
|
595
596
|
due_date: string | null;
|
|
596
597
|
hubspot_metadata: Json | null;
|
|
@@ -606,11 +607,13 @@ export type Database = {
|
|
|
606
607
|
| null;
|
|
607
608
|
subject: string;
|
|
608
609
|
ticket_id: string;
|
|
610
|
+
ticket_metadata: Json | null;
|
|
609
611
|
};
|
|
610
612
|
Insert: {
|
|
611
613
|
assigned_by?: string | null;
|
|
612
614
|
assignee?: string | null;
|
|
613
615
|
chat_id: string;
|
|
616
|
+
closed_at?: string | null;
|
|
614
617
|
created_at?: string;
|
|
615
618
|
due_date?: string | null;
|
|
616
619
|
hubspot_metadata?: Json | null;
|
|
@@ -626,11 +629,13 @@ export type Database = {
|
|
|
626
629
|
| null;
|
|
627
630
|
subject: string;
|
|
628
631
|
ticket_id?: string;
|
|
632
|
+
ticket_metadata?: Json | null;
|
|
629
633
|
};
|
|
630
634
|
Update: {
|
|
631
635
|
assigned_by?: string | null;
|
|
632
636
|
assignee?: string | null;
|
|
633
637
|
chat_id?: string;
|
|
638
|
+
closed_at?: string | null;
|
|
634
639
|
created_at?: string;
|
|
635
640
|
due_date?: string | null;
|
|
636
641
|
hubspot_metadata?: Json | null;
|
|
@@ -646,6 +651,7 @@ export type Database = {
|
|
|
646
651
|
| null;
|
|
647
652
|
subject?: string;
|
|
648
653
|
ticket_id?: string;
|
|
654
|
+
ticket_metadata?: Json | null;
|
|
649
655
|
};
|
|
650
656
|
Relationships: [
|
|
651
657
|
{
|
package/tsconfig.json
CHANGED
|
@@ -1,106 +1,106 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
/* Visit https://aka.ms/tsconfig to read more about this file */
|
|
4
|
-
/* Projects */
|
|
5
|
-
// "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */
|
|
6
|
-
// "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
|
|
7
|
-
// "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */
|
|
8
|
-
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */
|
|
9
|
-
// "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
|
|
10
|
-
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
|
|
11
|
-
/* Language and Environment */
|
|
12
|
-
"target": "ES2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
|
|
13
|
-
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
|
|
14
|
-
// "jsx": "preserve", /* Specify what JSX code is generated. */
|
|
15
|
-
// "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */
|
|
16
|
-
// "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
|
|
17
|
-
// "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */
|
|
18
|
-
// "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
|
|
19
|
-
// "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */
|
|
20
|
-
// "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */
|
|
21
|
-
// "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
|
|
22
|
-
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
|
|
23
|
-
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
|
|
24
|
-
/* Modules */
|
|
25
|
-
"module": "CommonJS", /* Specify what module code is generated. */
|
|
26
|
-
// "rootDir": "./", /* Specify the root folder within your source files. */
|
|
27
|
-
// "moduleResolution": "Node", /* Specify how TypeScript looks up a file from a given module specifier. */
|
|
28
|
-
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
|
|
29
|
-
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
|
|
30
|
-
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
|
|
31
|
-
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
|
|
32
|
-
// "types": [], /* Specify type package names to be included without being referenced in a source file. */
|
|
33
|
-
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
|
|
34
|
-
// "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
|
|
35
|
-
// "allowImportingTsExtensions": true, /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */
|
|
36
|
-
// "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */
|
|
37
|
-
// "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */
|
|
38
|
-
// "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */
|
|
39
|
-
// "resolveJsonModule": true, /* Enable importing .json files. */
|
|
40
|
-
// "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */
|
|
41
|
-
// "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */
|
|
42
|
-
/* JavaScript Support */
|
|
43
|
-
// "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
|
|
44
|
-
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
|
|
45
|
-
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
|
|
46
|
-
/* Emit */
|
|
47
|
-
"declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
|
|
48
|
-
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
|
|
49
|
-
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
|
|
50
|
-
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
|
|
51
|
-
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
|
|
52
|
-
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
|
|
53
|
-
"outDir": "dist/", /* Specify an output folder for all emitted files. */
|
|
54
|
-
// "removeComments": true, /* Disable emitting comments. */
|
|
55
|
-
// "noEmit": true, /* Disable emitting files from a compilation. */
|
|
56
|
-
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
|
|
57
|
-
// "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */
|
|
58
|
-
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
|
|
59
|
-
// "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
|
|
60
|
-
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
|
|
61
|
-
// "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */
|
|
62
|
-
// "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
|
|
63
|
-
// "newLine": "crlf", /* Set the newline character for emitting files. */
|
|
64
|
-
// "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */
|
|
65
|
-
// "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */
|
|
66
|
-
// "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
|
|
67
|
-
// "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */
|
|
68
|
-
// "declarationDir": "./", /* Specify the output directory for generated declaration files. */
|
|
69
|
-
// "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */
|
|
70
|
-
/* Interop Constraints */
|
|
71
|
-
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
|
|
72
|
-
// "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */
|
|
73
|
-
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
|
|
74
|
-
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
|
|
75
|
-
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
|
|
76
|
-
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
|
|
77
|
-
/* Type Checking */
|
|
78
|
-
"strict": true, /* Enable all strict type-checking options. */
|
|
79
|
-
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
|
|
80
|
-
// "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
|
|
81
|
-
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
|
|
82
|
-
// "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */
|
|
83
|
-
// "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
|
|
84
|
-
// "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */
|
|
85
|
-
// "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */
|
|
86
|
-
// "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
|
|
87
|
-
// "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
|
|
88
|
-
// "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
|
|
89
|
-
// "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
|
|
90
|
-
// "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
|
|
91
|
-
// "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
|
|
92
|
-
// "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
|
|
93
|
-
// "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
|
|
94
|
-
// "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
|
|
95
|
-
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
|
|
96
|
-
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
|
|
97
|
-
/* Completeness */
|
|
98
|
-
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
|
99
|
-
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
|
100
|
-
},
|
|
101
|
-
"exclude": [
|
|
102
|
-
"node_modules",
|
|
103
|
-
"dist",
|
|
104
|
-
"scripts"
|
|
105
|
-
]
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
/* Visit https://aka.ms/tsconfig to read more about this file */
|
|
4
|
+
/* Projects */
|
|
5
|
+
// "incremental": true, /* Save .tsbuildinfo files to allow for incremental compilation of projects. */
|
|
6
|
+
// "composite": true, /* Enable constraints that allow a TypeScript project to be used with project references. */
|
|
7
|
+
// "tsBuildInfoFile": "./.tsbuildinfo", /* Specify the path to .tsbuildinfo incremental compilation file. */
|
|
8
|
+
// "disableSourceOfProjectReferenceRedirect": true, /* Disable preferring source files instead of declaration files when referencing composite projects. */
|
|
9
|
+
// "disableSolutionSearching": true, /* Opt a project out of multi-project reference checking when editing. */
|
|
10
|
+
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
|
|
11
|
+
/* Language and Environment */
|
|
12
|
+
"target": "ES2016", /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
|
|
13
|
+
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
|
|
14
|
+
// "jsx": "preserve", /* Specify what JSX code is generated. */
|
|
15
|
+
// "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */
|
|
16
|
+
// "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
|
|
17
|
+
// "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h'. */
|
|
18
|
+
// "jsxFragmentFactory": "", /* Specify the JSX Fragment reference used for fragments when targeting React JSX emit e.g. 'React.Fragment' or 'Fragment'. */
|
|
19
|
+
// "jsxImportSource": "", /* Specify module specifier used to import the JSX factory functions when using 'jsx: react-jsx*'. */
|
|
20
|
+
// "reactNamespace": "", /* Specify the object invoked for 'createElement'. This only applies when targeting 'react' JSX emit. */
|
|
21
|
+
// "noLib": true, /* Disable including any library files, including the default lib.d.ts. */
|
|
22
|
+
// "useDefineForClassFields": true, /* Emit ECMAScript-standard-compliant class fields. */
|
|
23
|
+
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
|
|
24
|
+
/* Modules */
|
|
25
|
+
"module": "CommonJS", /* Specify what module code is generated. */
|
|
26
|
+
// "rootDir": "./", /* Specify the root folder within your source files. */
|
|
27
|
+
// "moduleResolution": "Node", /* Specify how TypeScript looks up a file from a given module specifier. */
|
|
28
|
+
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
|
|
29
|
+
// "paths": {}, /* Specify a set of entries that re-map imports to additional lookup locations. */
|
|
30
|
+
// "rootDirs": [], /* Allow multiple folders to be treated as one when resolving modules. */
|
|
31
|
+
// "typeRoots": [], /* Specify multiple folders that act like './node_modules/@types'. */
|
|
32
|
+
// "types": [], /* Specify type package names to be included without being referenced in a source file. */
|
|
33
|
+
// "allowUmdGlobalAccess": true, /* Allow accessing UMD globals from modules. */
|
|
34
|
+
// "moduleSuffixes": [], /* List of file name suffixes to search when resolving a module. */
|
|
35
|
+
// "allowImportingTsExtensions": true, /* Allow imports to include TypeScript file extensions. Requires '--moduleResolution bundler' and either '--noEmit' or '--emitDeclarationOnly' to be set. */
|
|
36
|
+
// "resolvePackageJsonExports": true, /* Use the package.json 'exports' field when resolving package imports. */
|
|
37
|
+
// "resolvePackageJsonImports": true, /* Use the package.json 'imports' field when resolving imports. */
|
|
38
|
+
// "customConditions": [], /* Conditions to set in addition to the resolver-specific defaults when resolving imports. */
|
|
39
|
+
// "resolveJsonModule": true, /* Enable importing .json files. */
|
|
40
|
+
// "allowArbitraryExtensions": true, /* Enable importing files with any extension, provided a declaration file is present. */
|
|
41
|
+
// "noResolve": true, /* Disallow 'import's, 'require's or '<reference>'s from expanding the number of files TypeScript should add to a project. */
|
|
42
|
+
/* JavaScript Support */
|
|
43
|
+
// "allowJs": true, /* Allow JavaScript files to be a part of your program. Use the 'checkJS' option to get errors from these files. */
|
|
44
|
+
// "checkJs": true, /* Enable error reporting in type-checked JavaScript files. */
|
|
45
|
+
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */
|
|
46
|
+
/* Emit */
|
|
47
|
+
"declaration": true, /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
|
|
48
|
+
// "declarationMap": true, /* Create sourcemaps for d.ts files. */
|
|
49
|
+
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
|
|
50
|
+
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
|
|
51
|
+
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
|
|
52
|
+
// "outFile": "./", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
|
|
53
|
+
"outDir": "dist/", /* Specify an output folder for all emitted files. */
|
|
54
|
+
// "removeComments": true, /* Disable emitting comments. */
|
|
55
|
+
// "noEmit": true, /* Disable emitting files from a compilation. */
|
|
56
|
+
// "importHelpers": true, /* Allow importing helper functions from tslib once per project, instead of including them per-file. */
|
|
57
|
+
// "importsNotUsedAsValues": "remove", /* Specify emit/checking behavior for imports that are only used for types. */
|
|
58
|
+
// "downlevelIteration": true, /* Emit more compliant, but verbose and less performant JavaScript for iteration. */
|
|
59
|
+
// "sourceRoot": "", /* Specify the root path for debuggers to find the reference source code. */
|
|
60
|
+
// "mapRoot": "", /* Specify the location where debugger should locate map files instead of generated locations. */
|
|
61
|
+
// "inlineSources": true, /* Include source code in the sourcemaps inside the emitted JavaScript. */
|
|
62
|
+
// "emitBOM": true, /* Emit a UTF-8 Byte Order Mark (BOM) in the beginning of output files. */
|
|
63
|
+
// "newLine": "crlf", /* Set the newline character for emitting files. */
|
|
64
|
+
// "stripInternal": true, /* Disable emitting declarations that have '@internal' in their JSDoc comments. */
|
|
65
|
+
// "noEmitHelpers": true, /* Disable generating custom helper functions like '__extends' in compiled output. */
|
|
66
|
+
// "noEmitOnError": true, /* Disable emitting files if any type checking errors are reported. */
|
|
67
|
+
// "preserveConstEnums": true, /* Disable erasing 'const enum' declarations in generated code. */
|
|
68
|
+
// "declarationDir": "./", /* Specify the output directory for generated declaration files. */
|
|
69
|
+
// "preserveValueImports": true, /* Preserve unused imported values in the JavaScript output that would otherwise be removed. */
|
|
70
|
+
/* Interop Constraints */
|
|
71
|
+
// "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */
|
|
72
|
+
// "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */
|
|
73
|
+
// "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */
|
|
74
|
+
"esModuleInterop": true, /* Emit additional JavaScript to ease support for importing CommonJS modules. This enables 'allowSyntheticDefaultImports' for type compatibility. */
|
|
75
|
+
// "preserveSymlinks": true, /* Disable resolving symlinks to their realpath. This correlates to the same flag in node. */
|
|
76
|
+
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
|
|
77
|
+
/* Type Checking */
|
|
78
|
+
"strict": true, /* Enable all strict type-checking options. */
|
|
79
|
+
// "noImplicitAny": true, /* Enable error reporting for expressions and declarations with an implied 'any' type. */
|
|
80
|
+
// "strictNullChecks": true, /* When type checking, take into account 'null' and 'undefined'. */
|
|
81
|
+
// "strictFunctionTypes": true, /* When assigning functions, check to ensure parameters and the return values are subtype-compatible. */
|
|
82
|
+
// "strictBindCallApply": true, /* Check that the arguments for 'bind', 'call', and 'apply' methods match the original function. */
|
|
83
|
+
// "strictPropertyInitialization": true, /* Check for class properties that are declared but not set in the constructor. */
|
|
84
|
+
// "noImplicitThis": true, /* Enable error reporting when 'this' is given the type 'any'. */
|
|
85
|
+
// "useUnknownInCatchVariables": true, /* Default catch clause variables as 'unknown' instead of 'any'. */
|
|
86
|
+
// "alwaysStrict": true, /* Ensure 'use strict' is always emitted. */
|
|
87
|
+
// "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */
|
|
88
|
+
// "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */
|
|
89
|
+
// "exactOptionalPropertyTypes": true, /* Interpret optional property types as written, rather than adding 'undefined'. */
|
|
90
|
+
// "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */
|
|
91
|
+
// "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */
|
|
92
|
+
// "noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */
|
|
93
|
+
// "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */
|
|
94
|
+
// "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */
|
|
95
|
+
// "allowUnusedLabels": true, /* Disable error reporting for unused labels. */
|
|
96
|
+
// "allowUnreachableCode": true, /* Disable error reporting for unreachable code. */
|
|
97
|
+
/* Completeness */
|
|
98
|
+
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
|
99
|
+
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
|
100
|
+
},
|
|
101
|
+
"exclude": [
|
|
102
|
+
"node_modules",
|
|
103
|
+
"dist",
|
|
104
|
+
"scripts"
|
|
105
|
+
]
|
|
106
106
|
}
|
package/types.ts
CHANGED
|
@@ -17,11 +17,15 @@ export type WhatsappChat = Chat & {
|
|
|
17
17
|
|
|
18
18
|
export enum AllPlans {
|
|
19
19
|
FREE_TRIAL = 'free-trial',
|
|
20
|
-
MONTHLY_STARTER = 'monthly-starter',
|
|
21
|
-
YEARLY_STARTER = 'yearly-starter',
|
|
22
|
-
MONTHLY_PRO = 'monthly-pro',
|
|
23
|
-
YEARLY_PRO = 'yearly-pro',
|
|
20
|
+
// MONTHLY_STARTER = 'monthly-starter',
|
|
21
|
+
// YEARLY_STARTER = 'yearly-starter',
|
|
22
|
+
// MONTHLY_PRO = 'monthly-pro',
|
|
23
|
+
// YEARLY_PRO = 'yearly-pro',
|
|
24
24
|
ENTERPRISE = 'enterprise',
|
|
25
|
+
MONTHLY_STARTER_SINGLE = 'monthly-starter-single',
|
|
26
|
+
YEARLY_STARTER_SINGLE = 'yearly-starter-single',
|
|
27
|
+
MONTHLY_PRO_SINGLE = 'monthly-pro-single',
|
|
28
|
+
YEARLY_PRO_SINGLE = 'yearly-pro-single',
|
|
25
29
|
}
|
|
26
30
|
|
|
27
31
|
export type Frequency = 'yearly' | 'monthly' | 'weekly' | 'custom';
|
|
@@ -29,7 +33,9 @@ export type Frequency = 'yearly' | 'monthly' | 'weekly' | 'custom';
|
|
|
29
33
|
export type Enterprise = `${string}-enterprise`;
|
|
30
34
|
|
|
31
35
|
export type OrgPlanEnterprise = {
|
|
36
|
+
subscription_id: string
|
|
32
37
|
plan_id: Enterprise;
|
|
38
|
+
interval: number;
|
|
33
39
|
frequency: Frequency;
|
|
34
40
|
user_limit: number;
|
|
35
41
|
phone_limit: number;
|
|
@@ -38,12 +44,14 @@ export type OrgPlanEnterprise = {
|
|
|
38
44
|
};
|
|
39
45
|
|
|
40
46
|
export type OrgPlanNonEnterprise = {
|
|
47
|
+
subscription_id: string
|
|
41
48
|
plan_id: AllPlans;
|
|
42
49
|
interval: number;
|
|
43
50
|
frequency: Frequency;
|
|
44
51
|
user_limit: number;
|
|
45
52
|
phone_limit: number;
|
|
46
|
-
|
|
53
|
+
current_period_end: number;
|
|
54
|
+
current_period_start: number;
|
|
47
55
|
};
|
|
48
56
|
|
|
49
57
|
export type OrgPlan<T extends AllPlans | Enterprise> = T extends Enterprise
|
|
@@ -337,6 +345,9 @@ export type StripeSubscription = _Stripe.Subscription;
|
|
|
337
345
|
export type StripeCustomer = _Stripe.Customer;
|
|
338
346
|
export type StripeCoupon = _Stripe.Coupon;
|
|
339
347
|
export type StripePrice = _Stripe.Price;
|
|
348
|
+
export type Stripe = _Stripe;
|
|
349
|
+
export type StripeUpcomingInvoice = _Stripe.UpcomingInvoice;
|
|
350
|
+
export type StripeLineItem = _Stripe.Checkout.SessionCreateParams.LineItem;
|
|
340
351
|
|
|
341
352
|
/* -------------------------------- REALTIME -------------------------------- */
|
|
342
353
|
|
package/update_package.ps1
CHANGED
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
# Define the path to your package.json file
|
|
2
|
-
$packageJsonPath = "./package.json"
|
|
3
|
-
|
|
4
|
-
# Read the package.json file
|
|
5
|
-
$packageJson = Get-Content $packageJsonPath -Raw | ConvertFrom-Json
|
|
6
|
-
|
|
7
|
-
# Increment the patch version
|
|
8
|
-
$versionParts = $packageJson.version -split '\.'
|
|
9
|
-
$versionParts[2] = [int]$versionParts[2] + 1
|
|
10
|
-
$newVersion = $versionParts -join '.'
|
|
11
|
-
|
|
12
|
-
Write-Host "Updating package version to $newVersion"
|
|
13
|
-
|
|
14
|
-
# Update the version in the object
|
|
15
|
-
$packageJson.version = $newVersion
|
|
16
|
-
|
|
17
|
-
# Convert the object back to JSON and save
|
|
18
|
-
$packageJson | ConvertTo-Json -Depth 100 | Set-Content $packageJsonPath
|
|
19
|
-
|
|
20
|
-
# Run npm command
|
|
21
|
-
npm run update-package
|
|
1
|
+
# Define the path to your package.json file
|
|
2
|
+
$packageJsonPath = "./package.json"
|
|
3
|
+
|
|
4
|
+
# Read the package.json file
|
|
5
|
+
$packageJson = Get-Content $packageJsonPath -Raw | ConvertFrom-Json
|
|
6
|
+
|
|
7
|
+
# Increment the patch version
|
|
8
|
+
$versionParts = $packageJson.version -split '\.'
|
|
9
|
+
$versionParts[2] = [int]$versionParts[2] + 1
|
|
10
|
+
$newVersion = $versionParts -join '.'
|
|
11
|
+
|
|
12
|
+
Write-Host "Updating package version to $newVersion"
|
|
13
|
+
|
|
14
|
+
# Update the version in the object
|
|
15
|
+
$packageJson.version = $newVersion
|
|
16
|
+
|
|
17
|
+
# Convert the object back to JSON and save
|
|
18
|
+
$packageJson | ConvertTo-Json -Depth 100 | Set-Content $packageJsonPath
|
|
19
|
+
|
|
20
|
+
# Run npm command
|
|
21
|
+
npm run update-package
|