@zapier/zapier-sdk 0.13.3 → 0.13.4
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/CHANGELOG.md +6 -0
- package/dist/api/schemas.d.ts +174 -174
- package/dist/constants.d.ts +4 -0
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +4 -0
- package/dist/index.cjs +436 -5
- package/dist/index.d.mts +380 -156
- package/dist/index.d.ts +3 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.mjs +407 -9
- package/dist/plugins/api/index.d.ts +1 -3
- package/dist/plugins/api/index.d.ts.map +1 -1
- package/dist/plugins/eventEmission/builders.d.ts +13 -0
- package/dist/plugins/eventEmission/builders.d.ts.map +1 -0
- package/dist/plugins/eventEmission/builders.js +78 -0
- package/dist/plugins/eventEmission/index.d.ts +34 -0
- package/dist/plugins/eventEmission/index.d.ts.map +1 -0
- package/dist/plugins/eventEmission/index.js +216 -0
- package/dist/plugins/eventEmission/index.test.d.ts +5 -0
- package/dist/plugins/eventEmission/index.test.d.ts.map +1 -0
- package/dist/plugins/eventEmission/index.test.js +143 -0
- package/dist/plugins/eventEmission/transport.d.ts +37 -0
- package/dist/plugins/eventEmission/transport.d.ts.map +1 -0
- package/dist/plugins/eventEmission/transport.js +96 -0
- package/dist/plugins/eventEmission/transport.test.d.ts +5 -0
- package/dist/plugins/eventEmission/transport.test.d.ts.map +1 -0
- package/dist/plugins/eventEmission/transport.test.js +153 -0
- package/dist/plugins/eventEmission/types.d.ts +53 -0
- package/dist/plugins/eventEmission/types.d.ts.map +1 -0
- package/dist/plugins/eventEmission/types.js +1 -0
- package/dist/plugins/eventEmission/utils.d.ts +45 -0
- package/dist/plugins/eventEmission/utils.d.ts.map +1 -0
- package/dist/plugins/eventEmission/utils.js +114 -0
- package/dist/plugins/fetch/schemas.d.ts +4 -4
- package/dist/plugins/getAction/schemas.d.ts +2 -2
- package/dist/plugins/listActions/schemas.d.ts +2 -2
- package/dist/plugins/listInputFieldChoices/schemas.d.ts +4 -4
- package/dist/plugins/listInputFields/schemas.d.ts +2 -2
- package/dist/plugins/request/schemas.d.ts +4 -4
- package/dist/plugins/runAction/schemas.d.ts +2 -2
- package/dist/resolvers/actionType.d.ts.map +1 -1
- package/dist/resolvers/actionType.js +2 -3
- package/dist/resolvers/authenticationId.d.ts.map +1 -1
- package/dist/schemas/Action.d.ts +2 -2
- package/dist/schemas/App.d.ts +30 -30
- package/dist/sdk.d.ts +2 -2
- package/dist/sdk.d.ts.map +1 -1
- package/dist/sdk.js +4 -1
- package/dist/types/sdk.d.ts +5 -1
- package/dist/types/sdk.d.ts.map +1 -1
- package/dist/types/telemetry-events.d.ts +76 -0
- package/dist/types/telemetry-events.d.ts.map +1 -0
- package/dist/types/telemetry-events.js +8 -0
- package/package.json +1 -1
- package/src/constants.ts +6 -0
- package/src/index.ts +24 -0
- package/src/plugins/api/index.ts +1 -5
- package/src/plugins/eventEmission/builders.ts +115 -0
- package/src/plugins/eventEmission/index.test.ts +169 -0
- package/src/plugins/eventEmission/index.ts +294 -0
- package/src/plugins/eventEmission/transport.test.ts +214 -0
- package/src/plugins/eventEmission/transport.ts +135 -0
- package/src/plugins/eventEmission/types.ts +58 -0
- package/src/plugins/eventEmission/utils.ts +121 -0
- package/src/resolvers/actionType.ts +4 -3
- package/src/resolvers/authenticationId.ts +2 -1
- package/src/sdk.ts +5 -1
- package/src/types/sdk.ts +7 -1
- package/src/types/telemetry-events.ts +85 -0
- package/tsconfig.tsbuildinfo +1 -1
package/dist/api/schemas.d.ts
CHANGED
|
@@ -10,13 +10,13 @@ export declare const NeedChoicesSchema: z.ZodObject<{
|
|
|
10
10
|
sample: z.ZodOptional<z.ZodString>;
|
|
11
11
|
value: z.ZodOptional<z.ZodString>;
|
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
|
13
|
-
value?: string | undefined;
|
|
14
13
|
key?: string | undefined;
|
|
14
|
+
value?: string | undefined;
|
|
15
15
|
label?: string | undefined;
|
|
16
16
|
sample?: string | undefined;
|
|
17
17
|
}, {
|
|
18
|
-
value?: string | undefined;
|
|
19
18
|
key?: string | undefined;
|
|
19
|
+
value?: string | undefined;
|
|
20
20
|
label?: string | undefined;
|
|
21
21
|
sample?: string | undefined;
|
|
22
22
|
}>;
|
|
@@ -30,13 +30,13 @@ export declare const NeedSchema: z.ZodObject<{
|
|
|
30
30
|
sample: z.ZodOptional<z.ZodString>;
|
|
31
31
|
value: z.ZodOptional<z.ZodString>;
|
|
32
32
|
}, "strip", z.ZodTypeAny, {
|
|
33
|
-
value?: string | undefined;
|
|
34
33
|
key?: string | undefined;
|
|
34
|
+
value?: string | undefined;
|
|
35
35
|
label?: string | undefined;
|
|
36
36
|
sample?: string | undefined;
|
|
37
37
|
}, {
|
|
38
|
-
value?: string | undefined;
|
|
39
38
|
key?: string | undefined;
|
|
39
|
+
value?: string | undefined;
|
|
40
40
|
label?: string | undefined;
|
|
41
41
|
sample?: string | undefined;
|
|
42
42
|
}>, "many">>;
|
|
@@ -65,12 +65,13 @@ export declare const NeedSchema: z.ZodObject<{
|
|
|
65
65
|
key: string;
|
|
66
66
|
default?: string | undefined;
|
|
67
67
|
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
68
|
+
list?: boolean | undefined;
|
|
68
69
|
label?: string | undefined;
|
|
69
70
|
alters_custom_fields?: boolean | null | undefined;
|
|
70
71
|
capabilities?: string[] | undefined;
|
|
71
72
|
choices?: {
|
|
72
|
-
value?: string | undefined;
|
|
73
73
|
key?: string | undefined;
|
|
74
|
+
value?: string | undefined;
|
|
74
75
|
label?: string | undefined;
|
|
75
76
|
sample?: string | undefined;
|
|
76
77
|
}[] | undefined;
|
|
@@ -91,17 +92,17 @@ export declare const NeedSchema: z.ZodObject<{
|
|
|
91
92
|
searchfill?: string | undefined;
|
|
92
93
|
send_in_json?: boolean | undefined;
|
|
93
94
|
regex?: string | undefined;
|
|
94
|
-
list?: boolean | undefined;
|
|
95
95
|
}, {
|
|
96
96
|
key: string;
|
|
97
97
|
default?: string | undefined;
|
|
98
98
|
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
99
|
+
list?: boolean | undefined;
|
|
99
100
|
label?: string | undefined;
|
|
100
101
|
alters_custom_fields?: boolean | null | undefined;
|
|
101
102
|
capabilities?: string[] | undefined;
|
|
102
103
|
choices?: {
|
|
103
|
-
value?: string | undefined;
|
|
104
104
|
key?: string | undefined;
|
|
105
|
+
value?: string | undefined;
|
|
105
106
|
label?: string | undefined;
|
|
106
107
|
sample?: string | undefined;
|
|
107
108
|
}[] | undefined;
|
|
@@ -122,7 +123,6 @@ export declare const NeedSchema: z.ZodObject<{
|
|
|
122
123
|
searchfill?: string | undefined;
|
|
123
124
|
send_in_json?: boolean | undefined;
|
|
124
125
|
regex?: string | undefined;
|
|
125
|
-
list?: boolean | undefined;
|
|
126
126
|
}>;
|
|
127
127
|
export declare const ActionLinksSchema: z.ZodObject<{
|
|
128
128
|
action_url: z.ZodOptional<z.ZodString>;
|
|
@@ -148,7 +148,7 @@ export declare const ActionSchema: z.ZodObject<{
|
|
|
148
148
|
is_hidden: z.ZodOptional<z.ZodBoolean>;
|
|
149
149
|
selected_api: z.ZodOptional<z.ZodString>;
|
|
150
150
|
}, "strip", z.ZodTypeAny, {
|
|
151
|
-
type: "filter" | "read" | "read_bulk" | "write" | "run" | "
|
|
151
|
+
type: "search" | "filter" | "read" | "read_bulk" | "write" | "run" | "search_or_write" | "search_and_write";
|
|
152
152
|
key: string;
|
|
153
153
|
name: string;
|
|
154
154
|
description: string;
|
|
@@ -157,7 +157,7 @@ export declare const ActionSchema: z.ZodObject<{
|
|
|
157
157
|
is_hidden?: boolean | undefined;
|
|
158
158
|
selected_api?: string | undefined;
|
|
159
159
|
}, {
|
|
160
|
-
type: "filter" | "read" | "read_bulk" | "write" | "run" | "
|
|
160
|
+
type: "search" | "filter" | "read" | "read_bulk" | "write" | "run" | "search_or_write" | "search_and_write";
|
|
161
161
|
key: string;
|
|
162
162
|
name: string;
|
|
163
163
|
description: string;
|
|
@@ -675,11 +675,11 @@ export declare const AppSchema: z.ZodObject<{
|
|
|
675
675
|
popularity: number;
|
|
676
676
|
primary_color: string;
|
|
677
677
|
slug: string;
|
|
678
|
+
categories?: string[] | undefined;
|
|
678
679
|
id?: number | undefined;
|
|
679
680
|
age_in_days?: string | undefined;
|
|
680
681
|
api_docs_url?: string | null | undefined;
|
|
681
682
|
banner?: string | undefined;
|
|
682
|
-
categories?: string[] | undefined;
|
|
683
683
|
canonical_id?: string | undefined;
|
|
684
684
|
days_since_last_update?: string | undefined;
|
|
685
685
|
hashtag?: string | undefined;
|
|
@@ -706,11 +706,11 @@ export declare const AppSchema: z.ZodObject<{
|
|
|
706
706
|
popularity: number;
|
|
707
707
|
primary_color: string;
|
|
708
708
|
slug: string;
|
|
709
|
+
categories?: string[] | undefined;
|
|
709
710
|
id?: number | undefined;
|
|
710
711
|
age_in_days?: string | undefined;
|
|
711
712
|
api_docs_url?: string | null | undefined;
|
|
712
713
|
banner?: string | undefined;
|
|
713
|
-
categories?: string[] | undefined;
|
|
714
714
|
canonical_id?: string | undefined;
|
|
715
715
|
days_since_last_update?: string | undefined;
|
|
716
716
|
hashtag?: string | undefined;
|
|
@@ -876,13 +876,13 @@ export declare const NeedsResponseSchema: z.ZodObject<{
|
|
|
876
876
|
sample: z.ZodOptional<z.ZodString>;
|
|
877
877
|
value: z.ZodOptional<z.ZodString>;
|
|
878
878
|
}, "strip", z.ZodTypeAny, {
|
|
879
|
-
value?: string | undefined;
|
|
880
879
|
key?: string | undefined;
|
|
880
|
+
value?: string | undefined;
|
|
881
881
|
label?: string | undefined;
|
|
882
882
|
sample?: string | undefined;
|
|
883
883
|
}, {
|
|
884
|
-
value?: string | undefined;
|
|
885
884
|
key?: string | undefined;
|
|
885
|
+
value?: string | undefined;
|
|
886
886
|
label?: string | undefined;
|
|
887
887
|
sample?: string | undefined;
|
|
888
888
|
}>, "many">>;
|
|
@@ -911,12 +911,13 @@ export declare const NeedsResponseSchema: z.ZodObject<{
|
|
|
911
911
|
key: string;
|
|
912
912
|
default?: string | undefined;
|
|
913
913
|
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
914
|
+
list?: boolean | undefined;
|
|
914
915
|
label?: string | undefined;
|
|
915
916
|
alters_custom_fields?: boolean | null | undefined;
|
|
916
917
|
capabilities?: string[] | undefined;
|
|
917
918
|
choices?: {
|
|
918
|
-
value?: string | undefined;
|
|
919
919
|
key?: string | undefined;
|
|
920
|
+
value?: string | undefined;
|
|
920
921
|
label?: string | undefined;
|
|
921
922
|
sample?: string | undefined;
|
|
922
923
|
}[] | undefined;
|
|
@@ -937,17 +938,17 @@ export declare const NeedsResponseSchema: z.ZodObject<{
|
|
|
937
938
|
searchfill?: string | undefined;
|
|
938
939
|
send_in_json?: boolean | undefined;
|
|
939
940
|
regex?: string | undefined;
|
|
940
|
-
list?: boolean | undefined;
|
|
941
941
|
}, {
|
|
942
942
|
key: string;
|
|
943
943
|
default?: string | undefined;
|
|
944
944
|
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
945
|
+
list?: boolean | undefined;
|
|
945
946
|
label?: string | undefined;
|
|
946
947
|
alters_custom_fields?: boolean | null | undefined;
|
|
947
948
|
capabilities?: string[] | undefined;
|
|
948
949
|
choices?: {
|
|
949
|
-
value?: string | undefined;
|
|
950
950
|
key?: string | undefined;
|
|
951
|
+
value?: string | undefined;
|
|
951
952
|
label?: string | undefined;
|
|
952
953
|
sample?: string | undefined;
|
|
953
954
|
}[] | undefined;
|
|
@@ -968,7 +969,6 @@ export declare const NeedsResponseSchema: z.ZodObject<{
|
|
|
968
969
|
searchfill?: string | undefined;
|
|
969
970
|
send_in_json?: boolean | undefined;
|
|
970
971
|
regex?: string | undefined;
|
|
971
|
-
list?: boolean | undefined;
|
|
972
972
|
}>, "many">>;
|
|
973
973
|
errors: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
974
974
|
last_fetched_at: z.ZodOptional<z.ZodString>;
|
|
@@ -978,12 +978,13 @@ export declare const NeedsResponseSchema: z.ZodObject<{
|
|
|
978
978
|
key: string;
|
|
979
979
|
default?: string | undefined;
|
|
980
980
|
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
981
|
+
list?: boolean | undefined;
|
|
981
982
|
label?: string | undefined;
|
|
982
983
|
alters_custom_fields?: boolean | null | undefined;
|
|
983
984
|
capabilities?: string[] | undefined;
|
|
984
985
|
choices?: {
|
|
985
|
-
value?: string | undefined;
|
|
986
986
|
key?: string | undefined;
|
|
987
|
+
value?: string | undefined;
|
|
987
988
|
label?: string | undefined;
|
|
988
989
|
sample?: string | undefined;
|
|
989
990
|
}[] | undefined;
|
|
@@ -1004,7 +1005,6 @@ export declare const NeedsResponseSchema: z.ZodObject<{
|
|
|
1004
1005
|
searchfill?: string | undefined;
|
|
1005
1006
|
send_in_json?: boolean | undefined;
|
|
1006
1007
|
regex?: string | undefined;
|
|
1007
|
-
list?: boolean | undefined;
|
|
1008
1008
|
}[] | undefined;
|
|
1009
1009
|
errors?: string[] | undefined;
|
|
1010
1010
|
last_fetched_at?: string | undefined;
|
|
@@ -1014,12 +1014,13 @@ export declare const NeedsResponseSchema: z.ZodObject<{
|
|
|
1014
1014
|
key: string;
|
|
1015
1015
|
default?: string | undefined;
|
|
1016
1016
|
type?: "string" | "boolean" | "filter" | "code" | "integer" | "text" | "datetime" | "file" | "decimal" | "copy" | "password" | "dict" | "json" | undefined;
|
|
1017
|
+
list?: boolean | undefined;
|
|
1017
1018
|
label?: string | undefined;
|
|
1018
1019
|
alters_custom_fields?: boolean | null | undefined;
|
|
1019
1020
|
capabilities?: string[] | undefined;
|
|
1020
1021
|
choices?: {
|
|
1021
|
-
value?: string | undefined;
|
|
1022
1022
|
key?: string | undefined;
|
|
1023
|
+
value?: string | undefined;
|
|
1023
1024
|
label?: string | undefined;
|
|
1024
1025
|
sample?: string | undefined;
|
|
1025
1026
|
}[] | undefined;
|
|
@@ -1040,7 +1041,6 @@ export declare const NeedsResponseSchema: z.ZodObject<{
|
|
|
1040
1041
|
searchfill?: string | undefined;
|
|
1041
1042
|
send_in_json?: boolean | undefined;
|
|
1042
1043
|
regex?: string | undefined;
|
|
1043
|
-
list?: boolean | undefined;
|
|
1044
1044
|
}[] | undefined;
|
|
1045
1045
|
errors?: string[] | undefined;
|
|
1046
1046
|
last_fetched_at?: string | undefined;
|
|
@@ -1060,7 +1060,7 @@ export declare const ImplementationSchema: z.ZodObject<{
|
|
|
1060
1060
|
is_hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1061
1061
|
selected_api: z.ZodOptional<z.ZodString>;
|
|
1062
1062
|
}, "strip", z.ZodTypeAny, {
|
|
1063
|
-
type: "filter" | "read" | "read_bulk" | "write" | "run" | "
|
|
1063
|
+
type: "search" | "filter" | "read" | "read_bulk" | "write" | "run" | "search_or_write" | "search_and_write";
|
|
1064
1064
|
key: string;
|
|
1065
1065
|
name: string;
|
|
1066
1066
|
description: string;
|
|
@@ -1069,7 +1069,7 @@ export declare const ImplementationSchema: z.ZodObject<{
|
|
|
1069
1069
|
is_hidden?: boolean | undefined;
|
|
1070
1070
|
selected_api?: string | undefined;
|
|
1071
1071
|
}, {
|
|
1072
|
-
type: "filter" | "read" | "read_bulk" | "write" | "run" | "
|
|
1072
|
+
type: "search" | "filter" | "read" | "read_bulk" | "write" | "run" | "search_or_write" | "search_and_write";
|
|
1073
1073
|
key: string;
|
|
1074
1074
|
name: string;
|
|
1075
1075
|
description: string;
|
|
@@ -1095,6 +1095,16 @@ export declare const ImplementationSchema: z.ZodObject<{
|
|
|
1095
1095
|
selected_api: string;
|
|
1096
1096
|
is_beta: boolean;
|
|
1097
1097
|
is_premium: boolean;
|
|
1098
|
+
actions?: {
|
|
1099
|
+
type: "search" | "filter" | "read" | "read_bulk" | "write" | "run" | "search_or_write" | "search_and_write";
|
|
1100
|
+
key: string;
|
|
1101
|
+
name: string;
|
|
1102
|
+
description: string;
|
|
1103
|
+
id?: string | undefined;
|
|
1104
|
+
is_important?: boolean | undefined;
|
|
1105
|
+
is_hidden?: boolean | undefined;
|
|
1106
|
+
selected_api?: string | undefined;
|
|
1107
|
+
}[] | undefined;
|
|
1098
1108
|
name?: string | undefined;
|
|
1099
1109
|
is_hidden?: string | undefined;
|
|
1100
1110
|
is_invite_only?: boolean | undefined;
|
|
@@ -1104,8 +1114,15 @@ export declare const ImplementationSchema: z.ZodObject<{
|
|
|
1104
1114
|
app_id?: number | undefined;
|
|
1105
1115
|
auth_type?: string | undefined;
|
|
1106
1116
|
auth_fields?: string | undefined;
|
|
1117
|
+
is_deprecated?: boolean | undefined;
|
|
1118
|
+
is_private_only?: boolean | undefined;
|
|
1119
|
+
secondary_color?: string | undefined;
|
|
1120
|
+
current_implementation?: string | undefined;
|
|
1121
|
+
other_implementations?: string | undefined;
|
|
1122
|
+
}, {
|
|
1123
|
+
selected_api: string;
|
|
1107
1124
|
actions?: {
|
|
1108
|
-
type: "filter" | "read" | "read_bulk" | "write" | "run" | "
|
|
1125
|
+
type: "search" | "filter" | "read" | "read_bulk" | "write" | "run" | "search_or_write" | "search_and_write";
|
|
1109
1126
|
key: string;
|
|
1110
1127
|
name: string;
|
|
1111
1128
|
description: string;
|
|
@@ -1114,13 +1131,6 @@ export declare const ImplementationSchema: z.ZodObject<{
|
|
|
1114
1131
|
is_hidden?: boolean | undefined;
|
|
1115
1132
|
selected_api?: string | undefined;
|
|
1116
1133
|
}[] | undefined;
|
|
1117
|
-
is_deprecated?: boolean | undefined;
|
|
1118
|
-
is_private_only?: boolean | undefined;
|
|
1119
|
-
secondary_color?: string | undefined;
|
|
1120
|
-
current_implementation?: string | undefined;
|
|
1121
|
-
other_implementations?: string | undefined;
|
|
1122
|
-
}, {
|
|
1123
|
-
selected_api: string;
|
|
1124
1134
|
name?: string | undefined;
|
|
1125
1135
|
is_hidden?: string | undefined;
|
|
1126
1136
|
is_invite_only?: boolean | undefined;
|
|
@@ -1132,16 +1142,6 @@ export declare const ImplementationSchema: z.ZodObject<{
|
|
|
1132
1142
|
app_id?: number | undefined;
|
|
1133
1143
|
auth_type?: string | undefined;
|
|
1134
1144
|
auth_fields?: string | undefined;
|
|
1135
|
-
actions?: {
|
|
1136
|
-
type: "filter" | "read" | "read_bulk" | "write" | "run" | "search" | "search_or_write" | "search_and_write";
|
|
1137
|
-
key: string;
|
|
1138
|
-
name: string;
|
|
1139
|
-
description: string;
|
|
1140
|
-
id?: string | undefined;
|
|
1141
|
-
is_important?: boolean | undefined;
|
|
1142
|
-
is_hidden?: boolean | undefined;
|
|
1143
|
-
selected_api?: string | undefined;
|
|
1144
|
-
}[] | undefined;
|
|
1145
1145
|
is_deprecated?: boolean | undefined;
|
|
1146
1146
|
is_private_only?: boolean | undefined;
|
|
1147
1147
|
secondary_color?: string | undefined;
|
|
@@ -1167,7 +1167,7 @@ export declare const ImplementationsResponseSchema: z.ZodObject<{
|
|
|
1167
1167
|
is_hidden: z.ZodOptional<z.ZodBoolean>;
|
|
1168
1168
|
selected_api: z.ZodOptional<z.ZodString>;
|
|
1169
1169
|
}, "strip", z.ZodTypeAny, {
|
|
1170
|
-
type: "filter" | "read" | "read_bulk" | "write" | "run" | "
|
|
1170
|
+
type: "search" | "filter" | "read" | "read_bulk" | "write" | "run" | "search_or_write" | "search_and_write";
|
|
1171
1171
|
key: string;
|
|
1172
1172
|
name: string;
|
|
1173
1173
|
description: string;
|
|
@@ -1176,7 +1176,7 @@ export declare const ImplementationsResponseSchema: z.ZodObject<{
|
|
|
1176
1176
|
is_hidden?: boolean | undefined;
|
|
1177
1177
|
selected_api?: string | undefined;
|
|
1178
1178
|
}, {
|
|
1179
|
-
type: "filter" | "read" | "read_bulk" | "write" | "run" | "
|
|
1179
|
+
type: "search" | "filter" | "read" | "read_bulk" | "write" | "run" | "search_or_write" | "search_and_write";
|
|
1180
1180
|
key: string;
|
|
1181
1181
|
name: string;
|
|
1182
1182
|
description: string;
|
|
@@ -1202,6 +1202,16 @@ export declare const ImplementationsResponseSchema: z.ZodObject<{
|
|
|
1202
1202
|
selected_api: string;
|
|
1203
1203
|
is_beta: boolean;
|
|
1204
1204
|
is_premium: boolean;
|
|
1205
|
+
actions?: {
|
|
1206
|
+
type: "search" | "filter" | "read" | "read_bulk" | "write" | "run" | "search_or_write" | "search_and_write";
|
|
1207
|
+
key: string;
|
|
1208
|
+
name: string;
|
|
1209
|
+
description: string;
|
|
1210
|
+
id?: string | undefined;
|
|
1211
|
+
is_important?: boolean | undefined;
|
|
1212
|
+
is_hidden?: boolean | undefined;
|
|
1213
|
+
selected_api?: string | undefined;
|
|
1214
|
+
}[] | undefined;
|
|
1205
1215
|
name?: string | undefined;
|
|
1206
1216
|
is_hidden?: string | undefined;
|
|
1207
1217
|
is_invite_only?: boolean | undefined;
|
|
@@ -1211,8 +1221,15 @@ export declare const ImplementationsResponseSchema: z.ZodObject<{
|
|
|
1211
1221
|
app_id?: number | undefined;
|
|
1212
1222
|
auth_type?: string | undefined;
|
|
1213
1223
|
auth_fields?: string | undefined;
|
|
1224
|
+
is_deprecated?: boolean | undefined;
|
|
1225
|
+
is_private_only?: boolean | undefined;
|
|
1226
|
+
secondary_color?: string | undefined;
|
|
1227
|
+
current_implementation?: string | undefined;
|
|
1228
|
+
other_implementations?: string | undefined;
|
|
1229
|
+
}, {
|
|
1230
|
+
selected_api: string;
|
|
1214
1231
|
actions?: {
|
|
1215
|
-
type: "filter" | "read" | "read_bulk" | "write" | "run" | "
|
|
1232
|
+
type: "search" | "filter" | "read" | "read_bulk" | "write" | "run" | "search_or_write" | "search_and_write";
|
|
1216
1233
|
key: string;
|
|
1217
1234
|
name: string;
|
|
1218
1235
|
description: string;
|
|
@@ -1221,13 +1238,6 @@ export declare const ImplementationsResponseSchema: z.ZodObject<{
|
|
|
1221
1238
|
is_hidden?: boolean | undefined;
|
|
1222
1239
|
selected_api?: string | undefined;
|
|
1223
1240
|
}[] | undefined;
|
|
1224
|
-
is_deprecated?: boolean | undefined;
|
|
1225
|
-
is_private_only?: boolean | undefined;
|
|
1226
|
-
secondary_color?: string | undefined;
|
|
1227
|
-
current_implementation?: string | undefined;
|
|
1228
|
-
other_implementations?: string | undefined;
|
|
1229
|
-
}, {
|
|
1230
|
-
selected_api: string;
|
|
1231
1241
|
name?: string | undefined;
|
|
1232
1242
|
is_hidden?: string | undefined;
|
|
1233
1243
|
is_invite_only?: boolean | undefined;
|
|
@@ -1239,16 +1249,6 @@ export declare const ImplementationsResponseSchema: z.ZodObject<{
|
|
|
1239
1249
|
app_id?: number | undefined;
|
|
1240
1250
|
auth_type?: string | undefined;
|
|
1241
1251
|
auth_fields?: string | undefined;
|
|
1242
|
-
actions?: {
|
|
1243
|
-
type: "filter" | "read" | "read_bulk" | "write" | "run" | "search" | "search_or_write" | "search_and_write";
|
|
1244
|
-
key: string;
|
|
1245
|
-
name: string;
|
|
1246
|
-
description: string;
|
|
1247
|
-
id?: string | undefined;
|
|
1248
|
-
is_important?: boolean | undefined;
|
|
1249
|
-
is_hidden?: boolean | undefined;
|
|
1250
|
-
selected_api?: string | undefined;
|
|
1251
|
-
}[] | undefined;
|
|
1252
1252
|
is_deprecated?: boolean | undefined;
|
|
1253
1253
|
is_private_only?: boolean | undefined;
|
|
1254
1254
|
secondary_color?: string | undefined;
|
|
@@ -1261,17 +1261,8 @@ export declare const ImplementationsResponseSchema: z.ZodObject<{
|
|
|
1261
1261
|
selected_api: string;
|
|
1262
1262
|
is_beta: boolean;
|
|
1263
1263
|
is_premium: boolean;
|
|
1264
|
-
name?: string | undefined;
|
|
1265
|
-
is_hidden?: string | undefined;
|
|
1266
|
-
is_invite_only?: boolean | undefined;
|
|
1267
|
-
images?: Record<string, string | null> | undefined;
|
|
1268
|
-
primary_color?: string | undefined;
|
|
1269
|
-
slug?: string | undefined;
|
|
1270
|
-
app_id?: number | undefined;
|
|
1271
|
-
auth_type?: string | undefined;
|
|
1272
|
-
auth_fields?: string | undefined;
|
|
1273
1264
|
actions?: {
|
|
1274
|
-
type: "filter" | "read" | "read_bulk" | "write" | "run" | "
|
|
1265
|
+
type: "search" | "filter" | "read" | "read_bulk" | "write" | "run" | "search_or_write" | "search_and_write";
|
|
1275
1266
|
key: string;
|
|
1276
1267
|
name: string;
|
|
1277
1268
|
description: string;
|
|
@@ -1280,6 +1271,15 @@ export declare const ImplementationsResponseSchema: z.ZodObject<{
|
|
|
1280
1271
|
is_hidden?: boolean | undefined;
|
|
1281
1272
|
selected_api?: string | undefined;
|
|
1282
1273
|
}[] | undefined;
|
|
1274
|
+
name?: string | undefined;
|
|
1275
|
+
is_hidden?: string | undefined;
|
|
1276
|
+
is_invite_only?: boolean | undefined;
|
|
1277
|
+
images?: Record<string, string | null> | undefined;
|
|
1278
|
+
primary_color?: string | undefined;
|
|
1279
|
+
slug?: string | undefined;
|
|
1280
|
+
app_id?: number | undefined;
|
|
1281
|
+
auth_type?: string | undefined;
|
|
1282
|
+
auth_fields?: string | undefined;
|
|
1283
1283
|
is_deprecated?: boolean | undefined;
|
|
1284
1284
|
is_private_only?: boolean | undefined;
|
|
1285
1285
|
secondary_color?: string | undefined;
|
|
@@ -1292,6 +1292,16 @@ export declare const ImplementationsResponseSchema: z.ZodObject<{
|
|
|
1292
1292
|
count: number;
|
|
1293
1293
|
results: {
|
|
1294
1294
|
selected_api: string;
|
|
1295
|
+
actions?: {
|
|
1296
|
+
type: "search" | "filter" | "read" | "read_bulk" | "write" | "run" | "search_or_write" | "search_and_write";
|
|
1297
|
+
key: string;
|
|
1298
|
+
name: string;
|
|
1299
|
+
description: string;
|
|
1300
|
+
id?: string | undefined;
|
|
1301
|
+
is_important?: boolean | undefined;
|
|
1302
|
+
is_hidden?: boolean | undefined;
|
|
1303
|
+
selected_api?: string | undefined;
|
|
1304
|
+
}[] | undefined;
|
|
1295
1305
|
name?: string | undefined;
|
|
1296
1306
|
is_hidden?: string | undefined;
|
|
1297
1307
|
is_invite_only?: boolean | undefined;
|
|
@@ -1303,16 +1313,6 @@ export declare const ImplementationsResponseSchema: z.ZodObject<{
|
|
|
1303
1313
|
app_id?: number | undefined;
|
|
1304
1314
|
auth_type?: string | undefined;
|
|
1305
1315
|
auth_fields?: string | undefined;
|
|
1306
|
-
actions?: {
|
|
1307
|
-
type: "filter" | "read" | "read_bulk" | "write" | "run" | "search" | "search_or_write" | "search_and_write";
|
|
1308
|
-
key: string;
|
|
1309
|
-
name: string;
|
|
1310
|
-
description: string;
|
|
1311
|
-
id?: string | undefined;
|
|
1312
|
-
is_important?: boolean | undefined;
|
|
1313
|
-
is_hidden?: boolean | undefined;
|
|
1314
|
-
selected_api?: string | undefined;
|
|
1315
|
-
}[] | undefined;
|
|
1316
1316
|
is_deprecated?: boolean | undefined;
|
|
1317
1317
|
is_private_only?: boolean | undefined;
|
|
1318
1318
|
secondary_color?: string | undefined;
|
|
@@ -1385,19 +1385,19 @@ export declare const ImplementationMetaSchema: z.ZodObject<{
|
|
|
1385
1385
|
search_and_write: z.ZodOptional<z.ZodNumber>;
|
|
1386
1386
|
filter: z.ZodOptional<z.ZodNumber>;
|
|
1387
1387
|
}, "strip", z.ZodTypeAny, {
|
|
1388
|
+
search?: number | undefined;
|
|
1388
1389
|
filter?: number | undefined;
|
|
1389
1390
|
read?: number | undefined;
|
|
1390
1391
|
read_bulk?: number | undefined;
|
|
1391
1392
|
write?: number | undefined;
|
|
1392
|
-
search?: number | undefined;
|
|
1393
1393
|
search_or_write?: number | undefined;
|
|
1394
1394
|
search_and_write?: number | undefined;
|
|
1395
1395
|
}, {
|
|
1396
|
+
search?: number | undefined;
|
|
1396
1397
|
filter?: number | undefined;
|
|
1397
1398
|
read?: number | undefined;
|
|
1398
1399
|
read_bulk?: number | undefined;
|
|
1399
1400
|
write?: number | undefined;
|
|
1400
|
-
search?: number | undefined;
|
|
1401
1401
|
search_or_write?: number | undefined;
|
|
1402
1402
|
search_and_write?: number | undefined;
|
|
1403
1403
|
}>>;
|
|
@@ -1411,16 +1411,25 @@ export declare const ImplementationMetaSchema: z.ZodObject<{
|
|
|
1411
1411
|
id: string;
|
|
1412
1412
|
name: string;
|
|
1413
1413
|
slug: string;
|
|
1414
|
-
description?: string | undefined;
|
|
1415
|
-
is_hidden?: boolean | undefined;
|
|
1416
|
-
age_in_days?: number | undefined;
|
|
1417
|
-
api_docs_url?: string | undefined;
|
|
1418
|
-
banner?: string | undefined;
|
|
1419
1414
|
categories?: {
|
|
1420
1415
|
id: number;
|
|
1421
1416
|
name: string;
|
|
1422
1417
|
slug: string;
|
|
1423
1418
|
}[] | undefined;
|
|
1419
|
+
actions?: {
|
|
1420
|
+
search?: number | undefined;
|
|
1421
|
+
filter?: number | undefined;
|
|
1422
|
+
read?: number | undefined;
|
|
1423
|
+
read_bulk?: number | undefined;
|
|
1424
|
+
write?: number | undefined;
|
|
1425
|
+
search_or_write?: number | undefined;
|
|
1426
|
+
search_and_write?: number | undefined;
|
|
1427
|
+
} | undefined;
|
|
1428
|
+
description?: string | undefined;
|
|
1429
|
+
is_hidden?: boolean | undefined;
|
|
1430
|
+
age_in_days?: number | undefined;
|
|
1431
|
+
api_docs_url?: string | undefined;
|
|
1432
|
+
banner?: string | undefined;
|
|
1424
1433
|
image?: string | undefined;
|
|
1425
1434
|
images?: {
|
|
1426
1435
|
url_16x16?: string | undefined;
|
|
@@ -1437,15 +1446,6 @@ export declare const ImplementationMetaSchema: z.ZodObject<{
|
|
|
1437
1446
|
popularity?: number | undefined;
|
|
1438
1447
|
primary_color?: string | undefined;
|
|
1439
1448
|
auth_type?: string | undefined;
|
|
1440
|
-
actions?: {
|
|
1441
|
-
filter?: number | undefined;
|
|
1442
|
-
read?: number | undefined;
|
|
1443
|
-
read_bulk?: number | undefined;
|
|
1444
|
-
write?: number | undefined;
|
|
1445
|
-
search?: number | undefined;
|
|
1446
|
-
search_or_write?: number | undefined;
|
|
1447
|
-
search_and_write?: number | undefined;
|
|
1448
|
-
} | undefined;
|
|
1449
1449
|
is_deprecated?: boolean | undefined;
|
|
1450
1450
|
secondary_color?: string | undefined;
|
|
1451
1451
|
has_filters?: boolean | undefined;
|
|
@@ -1462,16 +1462,25 @@ export declare const ImplementationMetaSchema: z.ZodObject<{
|
|
|
1462
1462
|
id: string;
|
|
1463
1463
|
name: string;
|
|
1464
1464
|
slug: string;
|
|
1465
|
-
description?: string | undefined;
|
|
1466
|
-
is_hidden?: boolean | undefined;
|
|
1467
|
-
age_in_days?: number | undefined;
|
|
1468
|
-
api_docs_url?: string | undefined;
|
|
1469
|
-
banner?: string | undefined;
|
|
1470
1465
|
categories?: {
|
|
1471
1466
|
id: number;
|
|
1472
1467
|
name: string;
|
|
1473
1468
|
slug: string;
|
|
1474
1469
|
}[] | undefined;
|
|
1470
|
+
actions?: {
|
|
1471
|
+
search?: number | undefined;
|
|
1472
|
+
filter?: number | undefined;
|
|
1473
|
+
read?: number | undefined;
|
|
1474
|
+
read_bulk?: number | undefined;
|
|
1475
|
+
write?: number | undefined;
|
|
1476
|
+
search_or_write?: number | undefined;
|
|
1477
|
+
search_and_write?: number | undefined;
|
|
1478
|
+
} | undefined;
|
|
1479
|
+
description?: string | undefined;
|
|
1480
|
+
is_hidden?: boolean | undefined;
|
|
1481
|
+
age_in_days?: number | undefined;
|
|
1482
|
+
api_docs_url?: string | undefined;
|
|
1483
|
+
banner?: string | undefined;
|
|
1475
1484
|
image?: string | undefined;
|
|
1476
1485
|
images?: {
|
|
1477
1486
|
url_16x16?: string | undefined;
|
|
@@ -1488,15 +1497,6 @@ export declare const ImplementationMetaSchema: z.ZodObject<{
|
|
|
1488
1497
|
popularity?: number | undefined;
|
|
1489
1498
|
primary_color?: string | undefined;
|
|
1490
1499
|
auth_type?: string | undefined;
|
|
1491
|
-
actions?: {
|
|
1492
|
-
filter?: number | undefined;
|
|
1493
|
-
read?: number | undefined;
|
|
1494
|
-
read_bulk?: number | undefined;
|
|
1495
|
-
write?: number | undefined;
|
|
1496
|
-
search?: number | undefined;
|
|
1497
|
-
search_or_write?: number | undefined;
|
|
1498
|
-
search_and_write?: number | undefined;
|
|
1499
|
-
} | undefined;
|
|
1500
1500
|
is_deprecated?: boolean | undefined;
|
|
1501
1501
|
secondary_color?: string | undefined;
|
|
1502
1502
|
has_filters?: boolean | undefined;
|
|
@@ -1577,19 +1577,19 @@ export declare const ImplementationsMetaResponseSchema: z.ZodObject<{
|
|
|
1577
1577
|
search_and_write: z.ZodOptional<z.ZodNumber>;
|
|
1578
1578
|
filter: z.ZodOptional<z.ZodNumber>;
|
|
1579
1579
|
}, "strip", z.ZodTypeAny, {
|
|
1580
|
+
search?: number | undefined;
|
|
1580
1581
|
filter?: number | undefined;
|
|
1581
1582
|
read?: number | undefined;
|
|
1582
1583
|
read_bulk?: number | undefined;
|
|
1583
1584
|
write?: number | undefined;
|
|
1584
|
-
search?: number | undefined;
|
|
1585
1585
|
search_or_write?: number | undefined;
|
|
1586
1586
|
search_and_write?: number | undefined;
|
|
1587
1587
|
}, {
|
|
1588
|
+
search?: number | undefined;
|
|
1588
1589
|
filter?: number | undefined;
|
|
1589
1590
|
read?: number | undefined;
|
|
1590
1591
|
read_bulk?: number | undefined;
|
|
1591
1592
|
write?: number | undefined;
|
|
1592
|
-
search?: number | undefined;
|
|
1593
1593
|
search_or_write?: number | undefined;
|
|
1594
1594
|
search_and_write?: number | undefined;
|
|
1595
1595
|
}>>;
|
|
@@ -1603,16 +1603,25 @@ export declare const ImplementationsMetaResponseSchema: z.ZodObject<{
|
|
|
1603
1603
|
id: string;
|
|
1604
1604
|
name: string;
|
|
1605
1605
|
slug: string;
|
|
1606
|
-
description?: string | undefined;
|
|
1607
|
-
is_hidden?: boolean | undefined;
|
|
1608
|
-
age_in_days?: number | undefined;
|
|
1609
|
-
api_docs_url?: string | undefined;
|
|
1610
|
-
banner?: string | undefined;
|
|
1611
1606
|
categories?: {
|
|
1612
1607
|
id: number;
|
|
1613
1608
|
name: string;
|
|
1614
1609
|
slug: string;
|
|
1615
1610
|
}[] | undefined;
|
|
1611
|
+
actions?: {
|
|
1612
|
+
search?: number | undefined;
|
|
1613
|
+
filter?: number | undefined;
|
|
1614
|
+
read?: number | undefined;
|
|
1615
|
+
read_bulk?: number | undefined;
|
|
1616
|
+
write?: number | undefined;
|
|
1617
|
+
search_or_write?: number | undefined;
|
|
1618
|
+
search_and_write?: number | undefined;
|
|
1619
|
+
} | undefined;
|
|
1620
|
+
description?: string | undefined;
|
|
1621
|
+
is_hidden?: boolean | undefined;
|
|
1622
|
+
age_in_days?: number | undefined;
|
|
1623
|
+
api_docs_url?: string | undefined;
|
|
1624
|
+
banner?: string | undefined;
|
|
1616
1625
|
image?: string | undefined;
|
|
1617
1626
|
images?: {
|
|
1618
1627
|
url_16x16?: string | undefined;
|
|
@@ -1629,15 +1638,6 @@ export declare const ImplementationsMetaResponseSchema: z.ZodObject<{
|
|
|
1629
1638
|
popularity?: number | undefined;
|
|
1630
1639
|
primary_color?: string | undefined;
|
|
1631
1640
|
auth_type?: string | undefined;
|
|
1632
|
-
actions?: {
|
|
1633
|
-
filter?: number | undefined;
|
|
1634
|
-
read?: number | undefined;
|
|
1635
|
-
read_bulk?: number | undefined;
|
|
1636
|
-
write?: number | undefined;
|
|
1637
|
-
search?: number | undefined;
|
|
1638
|
-
search_or_write?: number | undefined;
|
|
1639
|
-
search_and_write?: number | undefined;
|
|
1640
|
-
} | undefined;
|
|
1641
1641
|
is_deprecated?: boolean | undefined;
|
|
1642
1642
|
secondary_color?: string | undefined;
|
|
1643
1643
|
has_filters?: boolean | undefined;
|
|
@@ -1654,16 +1654,25 @@ export declare const ImplementationsMetaResponseSchema: z.ZodObject<{
|
|
|
1654
1654
|
id: string;
|
|
1655
1655
|
name: string;
|
|
1656
1656
|
slug: string;
|
|
1657
|
-
description?: string | undefined;
|
|
1658
|
-
is_hidden?: boolean | undefined;
|
|
1659
|
-
age_in_days?: number | undefined;
|
|
1660
|
-
api_docs_url?: string | undefined;
|
|
1661
|
-
banner?: string | undefined;
|
|
1662
1657
|
categories?: {
|
|
1663
1658
|
id: number;
|
|
1664
1659
|
name: string;
|
|
1665
1660
|
slug: string;
|
|
1666
1661
|
}[] | undefined;
|
|
1662
|
+
actions?: {
|
|
1663
|
+
search?: number | undefined;
|
|
1664
|
+
filter?: number | undefined;
|
|
1665
|
+
read?: number | undefined;
|
|
1666
|
+
read_bulk?: number | undefined;
|
|
1667
|
+
write?: number | undefined;
|
|
1668
|
+
search_or_write?: number | undefined;
|
|
1669
|
+
search_and_write?: number | undefined;
|
|
1670
|
+
} | undefined;
|
|
1671
|
+
description?: string | undefined;
|
|
1672
|
+
is_hidden?: boolean | undefined;
|
|
1673
|
+
age_in_days?: number | undefined;
|
|
1674
|
+
api_docs_url?: string | undefined;
|
|
1675
|
+
banner?: string | undefined;
|
|
1667
1676
|
image?: string | undefined;
|
|
1668
1677
|
images?: {
|
|
1669
1678
|
url_16x16?: string | undefined;
|
|
@@ -1680,15 +1689,6 @@ export declare const ImplementationsMetaResponseSchema: z.ZodObject<{
|
|
|
1680
1689
|
popularity?: number | undefined;
|
|
1681
1690
|
primary_color?: string | undefined;
|
|
1682
1691
|
auth_type?: string | undefined;
|
|
1683
|
-
actions?: {
|
|
1684
|
-
filter?: number | undefined;
|
|
1685
|
-
read?: number | undefined;
|
|
1686
|
-
read_bulk?: number | undefined;
|
|
1687
|
-
write?: number | undefined;
|
|
1688
|
-
search?: number | undefined;
|
|
1689
|
-
search_or_write?: number | undefined;
|
|
1690
|
-
search_and_write?: number | undefined;
|
|
1691
|
-
} | undefined;
|
|
1692
1692
|
is_deprecated?: boolean | undefined;
|
|
1693
1693
|
secondary_color?: string | undefined;
|
|
1694
1694
|
has_filters?: boolean | undefined;
|
|
@@ -1708,16 +1708,25 @@ export declare const ImplementationsMetaResponseSchema: z.ZodObject<{
|
|
|
1708
1708
|
id: string;
|
|
1709
1709
|
name: string;
|
|
1710
1710
|
slug: string;
|
|
1711
|
-
description?: string | undefined;
|
|
1712
|
-
is_hidden?: boolean | undefined;
|
|
1713
|
-
age_in_days?: number | undefined;
|
|
1714
|
-
api_docs_url?: string | undefined;
|
|
1715
|
-
banner?: string | undefined;
|
|
1716
1711
|
categories?: {
|
|
1717
1712
|
id: number;
|
|
1718
1713
|
name: string;
|
|
1719
1714
|
slug: string;
|
|
1720
1715
|
}[] | undefined;
|
|
1716
|
+
actions?: {
|
|
1717
|
+
search?: number | undefined;
|
|
1718
|
+
filter?: number | undefined;
|
|
1719
|
+
read?: number | undefined;
|
|
1720
|
+
read_bulk?: number | undefined;
|
|
1721
|
+
write?: number | undefined;
|
|
1722
|
+
search_or_write?: number | undefined;
|
|
1723
|
+
search_and_write?: number | undefined;
|
|
1724
|
+
} | undefined;
|
|
1725
|
+
description?: string | undefined;
|
|
1726
|
+
is_hidden?: boolean | undefined;
|
|
1727
|
+
age_in_days?: number | undefined;
|
|
1728
|
+
api_docs_url?: string | undefined;
|
|
1729
|
+
banner?: string | undefined;
|
|
1721
1730
|
image?: string | undefined;
|
|
1722
1731
|
images?: {
|
|
1723
1732
|
url_16x16?: string | undefined;
|
|
@@ -1734,15 +1743,6 @@ export declare const ImplementationsMetaResponseSchema: z.ZodObject<{
|
|
|
1734
1743
|
popularity?: number | undefined;
|
|
1735
1744
|
primary_color?: string | undefined;
|
|
1736
1745
|
auth_type?: string | undefined;
|
|
1737
|
-
actions?: {
|
|
1738
|
-
filter?: number | undefined;
|
|
1739
|
-
read?: number | undefined;
|
|
1740
|
-
read_bulk?: number | undefined;
|
|
1741
|
-
write?: number | undefined;
|
|
1742
|
-
search?: number | undefined;
|
|
1743
|
-
search_or_write?: number | undefined;
|
|
1744
|
-
search_and_write?: number | undefined;
|
|
1745
|
-
} | undefined;
|
|
1746
1746
|
is_deprecated?: boolean | undefined;
|
|
1747
1747
|
secondary_color?: string | undefined;
|
|
1748
1748
|
has_filters?: boolean | undefined;
|
|
@@ -1764,16 +1764,25 @@ export declare const ImplementationsMetaResponseSchema: z.ZodObject<{
|
|
|
1764
1764
|
id: string;
|
|
1765
1765
|
name: string;
|
|
1766
1766
|
slug: string;
|
|
1767
|
-
description?: string | undefined;
|
|
1768
|
-
is_hidden?: boolean | undefined;
|
|
1769
|
-
age_in_days?: number | undefined;
|
|
1770
|
-
api_docs_url?: string | undefined;
|
|
1771
|
-
banner?: string | undefined;
|
|
1772
1767
|
categories?: {
|
|
1773
1768
|
id: number;
|
|
1774
1769
|
name: string;
|
|
1775
1770
|
slug: string;
|
|
1776
1771
|
}[] | undefined;
|
|
1772
|
+
actions?: {
|
|
1773
|
+
search?: number | undefined;
|
|
1774
|
+
filter?: number | undefined;
|
|
1775
|
+
read?: number | undefined;
|
|
1776
|
+
read_bulk?: number | undefined;
|
|
1777
|
+
write?: number | undefined;
|
|
1778
|
+
search_or_write?: number | undefined;
|
|
1779
|
+
search_and_write?: number | undefined;
|
|
1780
|
+
} | undefined;
|
|
1781
|
+
description?: string | undefined;
|
|
1782
|
+
is_hidden?: boolean | undefined;
|
|
1783
|
+
age_in_days?: number | undefined;
|
|
1784
|
+
api_docs_url?: string | undefined;
|
|
1785
|
+
banner?: string | undefined;
|
|
1777
1786
|
image?: string | undefined;
|
|
1778
1787
|
images?: {
|
|
1779
1788
|
url_16x16?: string | undefined;
|
|
@@ -1790,15 +1799,6 @@ export declare const ImplementationsMetaResponseSchema: z.ZodObject<{
|
|
|
1790
1799
|
popularity?: number | undefined;
|
|
1791
1800
|
primary_color?: string | undefined;
|
|
1792
1801
|
auth_type?: string | undefined;
|
|
1793
|
-
actions?: {
|
|
1794
|
-
filter?: number | undefined;
|
|
1795
|
-
read?: number | undefined;
|
|
1796
|
-
read_bulk?: number | undefined;
|
|
1797
|
-
write?: number | undefined;
|
|
1798
|
-
search?: number | undefined;
|
|
1799
|
-
search_or_write?: number | undefined;
|
|
1800
|
-
search_and_write?: number | undefined;
|
|
1801
|
-
} | undefined;
|
|
1802
1802
|
is_deprecated?: boolean | undefined;
|
|
1803
1803
|
secondary_color?: string | undefined;
|
|
1804
1804
|
has_filters?: boolean | undefined;
|
|
@@ -1865,13 +1865,13 @@ export declare const NeedChoicesResponseSchema: z.ZodObject<{
|
|
|
1865
1865
|
sample: z.ZodOptional<z.ZodString>;
|
|
1866
1866
|
value: z.ZodOptional<z.ZodString>;
|
|
1867
1867
|
}, "strip", z.ZodTypeAny, {
|
|
1868
|
-
value?: string | undefined;
|
|
1869
1868
|
key?: string | undefined;
|
|
1869
|
+
value?: string | undefined;
|
|
1870
1870
|
label?: string | undefined;
|
|
1871
1871
|
sample?: string | undefined;
|
|
1872
1872
|
}, {
|
|
1873
|
-
value?: string | undefined;
|
|
1874
1873
|
key?: string | undefined;
|
|
1874
|
+
value?: string | undefined;
|
|
1875
1875
|
label?: string | undefined;
|
|
1876
1876
|
sample?: string | undefined;
|
|
1877
1877
|
}>, "many">>;
|
|
@@ -1897,8 +1897,8 @@ export declare const NeedChoicesResponseSchema: z.ZodObject<{
|
|
|
1897
1897
|
}, "strip", z.ZodTypeAny, {
|
|
1898
1898
|
success: boolean;
|
|
1899
1899
|
choices?: {
|
|
1900
|
-
value?: string | undefined;
|
|
1901
1900
|
key?: string | undefined;
|
|
1901
|
+
value?: string | undefined;
|
|
1902
1902
|
label?: string | undefined;
|
|
1903
1903
|
sample?: string | undefined;
|
|
1904
1904
|
}[] | undefined;
|
|
@@ -1914,8 +1914,8 @@ export declare const NeedChoicesResponseSchema: z.ZodObject<{
|
|
|
1914
1914
|
}, {
|
|
1915
1915
|
success: boolean;
|
|
1916
1916
|
choices?: {
|
|
1917
|
-
value?: string | undefined;
|
|
1918
1917
|
key?: string | undefined;
|
|
1918
|
+
value?: string | undefined;
|
|
1919
1919
|
label?: string | undefined;
|
|
1920
1920
|
sample?: string | undefined;
|
|
1921
1921
|
}[] | undefined;
|