@periskope/types 0.6.93 → 0.6.95

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.
@@ -29,6 +29,39 @@ export type Database = {
29
29
  };
30
30
  public: {
31
31
  Tables: {
32
+ tbl_api_logs: {
33
+ Row: {
34
+ org_id: string;
35
+ path: string;
36
+ req: Json;
37
+ request_id: string;
38
+ res: Json;
39
+ status: number;
40
+ timestamp: string;
41
+ token_id: string;
42
+ };
43
+ Insert: {
44
+ org_id: string;
45
+ path: string;
46
+ req: Json;
47
+ request_id: string;
48
+ res: Json;
49
+ status: number;
50
+ timestamp: string;
51
+ token_id: string;
52
+ };
53
+ Update: {
54
+ org_id?: string;
55
+ path?: string;
56
+ req?: Json;
57
+ request_id?: string;
58
+ res?: Json;
59
+ status?: number;
60
+ timestamp?: string;
61
+ token_id?: string;
62
+ };
63
+ Relationships: [];
64
+ };
32
65
  tbl_broadcast_logs: {
33
66
  Row: {
34
67
  broadcast_id: string;
@@ -586,6 +619,7 @@ export type Database = {
586
619
  assigned_by: string | null;
587
620
  assignee: string | null;
588
621
  chat_id: string;
622
+ closed_at: string | null;
589
623
  created_at: string;
590
624
  due_date: string | null;
591
625
  hubspot_metadata: Json | null;
@@ -599,11 +633,13 @@ export type Database = {
599
633
  status: Database['public']['Enums']['enum_chat_tickets_status'] | null;
600
634
  subject: string;
601
635
  ticket_id: string;
636
+ ticket_metadata: Json | null;
602
637
  };
603
638
  Insert: {
604
639
  assigned_by?: string | null;
605
640
  assignee?: string | null;
606
641
  chat_id: string;
642
+ closed_at?: string | null;
607
643
  created_at?: string;
608
644
  due_date?: string | null;
609
645
  hubspot_metadata?: Json | null;
@@ -617,11 +653,13 @@ export type Database = {
617
653
  status?: Database['public']['Enums']['enum_chat_tickets_status'] | null;
618
654
  subject: string;
619
655
  ticket_id?: string;
656
+ ticket_metadata?: Json | null;
620
657
  };
621
658
  Update: {
622
659
  assigned_by?: string | null;
623
660
  assignee?: string | null;
624
661
  chat_id?: string;
662
+ closed_at?: string | null;
625
663
  created_at?: string;
626
664
  due_date?: string | null;
627
665
  hubspot_metadata?: Json | null;
@@ -635,6 +673,7 @@ export type Database = {
635
673
  status?: Database['public']['Enums']['enum_chat_tickets_status'] | null;
636
674
  subject?: string;
637
675
  ticket_id?: string;
676
+ ticket_metadata?: Json | null;
638
677
  };
639
678
  Relationships: [
640
679
  {
@@ -1644,8 +1683,7 @@ export type Database = {
1644
1683
  Args: {
1645
1684
  org_id_input: string;
1646
1685
  tbl_type: string;
1647
- label_ids_input: Json;
1648
- row_id_input: string[];
1686
+ row_label_map: Json;
1649
1687
  replace_labels?: boolean;
1650
1688
  };
1651
1689
  Returns: undefined;
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@periskope/types",
3
- "version": "0.6.93",
3
+ "version": "0.6.95",
4
4
  "private": false,
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/supabase.types.ts CHANGED
@@ -28,6 +28,39 @@ export type Database = {
28
28
  };
29
29
  public: {
30
30
  Tables: {
31
+ tbl_api_logs: {
32
+ Row: {
33
+ org_id: string;
34
+ path: string;
35
+ req: Json;
36
+ request_id: string;
37
+ res: Json;
38
+ status: number;
39
+ timestamp: string;
40
+ token_id: string;
41
+ };
42
+ Insert: {
43
+ org_id: string;
44
+ path: string;
45
+ req: Json;
46
+ request_id: string;
47
+ res: Json;
48
+ status: number;
49
+ timestamp: string;
50
+ token_id: string;
51
+ };
52
+ Update: {
53
+ org_id?: string;
54
+ path?: string;
55
+ req?: Json;
56
+ request_id?: string;
57
+ res?: Json;
58
+ status?: number;
59
+ timestamp?: string;
60
+ token_id?: string;
61
+ };
62
+ Relationships: [];
63
+ };
31
64
  tbl_broadcast_logs: {
32
65
  Row: {
33
66
  broadcast_id: string;
@@ -591,6 +624,7 @@ export type Database = {
591
624
  assigned_by: string | null;
592
625
  assignee: string | null;
593
626
  chat_id: string;
627
+ closed_at: string | null;
594
628
  created_at: string;
595
629
  due_date: string | null;
596
630
  hubspot_metadata: Json | null;
@@ -606,11 +640,13 @@ export type Database = {
606
640
  | null;
607
641
  subject: string;
608
642
  ticket_id: string;
643
+ ticket_metadata: Json | null;
609
644
  };
610
645
  Insert: {
611
646
  assigned_by?: string | null;
612
647
  assignee?: string | null;
613
648
  chat_id: string;
649
+ closed_at?: string | null;
614
650
  created_at?: string;
615
651
  due_date?: string | null;
616
652
  hubspot_metadata?: Json | null;
@@ -626,11 +662,13 @@ export type Database = {
626
662
  | null;
627
663
  subject: string;
628
664
  ticket_id?: string;
665
+ ticket_metadata?: Json | null;
629
666
  };
630
667
  Update: {
631
668
  assigned_by?: string | null;
632
669
  assignee?: string | null;
633
670
  chat_id?: string;
671
+ closed_at?: string | null;
634
672
  created_at?: string;
635
673
  due_date?: string | null;
636
674
  hubspot_metadata?: Json | null;
@@ -646,6 +684,7 @@ export type Database = {
646
684
  | null;
647
685
  subject?: string;
648
686
  ticket_id?: string;
687
+ ticket_metadata?: Json | null;
649
688
  };
650
689
  Relationships: [
651
690
  {
@@ -1661,8 +1700,7 @@ export type Database = {
1661
1700
  Args: {
1662
1701
  org_id_input: string;
1663
1702
  tbl_type: string;
1664
- label_ids_input: Json;
1665
- row_id_input: string[];
1703
+ row_label_map: Json;
1666
1704
  replace_labels?: boolean;
1667
1705
  };
1668
1706
  Returns: undefined;
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
  }
@@ -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