@seamapi/types 1.683.0 → 1.685.0
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/connect.cjs +194 -36
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +388 -81
- package/dist/index.cjs +194 -36
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-access-group.d.ts +78 -12
- package/lib/seam/connect/models/acs/acs-access-group.js +9 -1
- package/lib/seam/connect/models/acs/acs-access-group.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +78 -20
- package/lib/seam/connect/openapi.d.ts +179 -34
- package/lib/seam/connect/openapi.js +187 -33
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +77 -15
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-access-group.ts +12 -3
- package/src/lib/seam/connect/openapi.ts +202 -35
- package/src/lib/seam/connect/route-types.ts +140 -57
|
@@ -30,13 +30,37 @@ declare const _acs_access_group_warning_map: z.ZodObject<{
|
|
|
30
30
|
created_at: string;
|
|
31
31
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
32
32
|
}>>>;
|
|
33
|
+
being_deleted: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
|
34
|
+
created_at: z.ZodString;
|
|
35
|
+
message: z.ZodString;
|
|
36
|
+
} & {
|
|
37
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
38
|
+
}, "strip", z.ZodTypeAny, {
|
|
39
|
+
message: string;
|
|
40
|
+
created_at: string;
|
|
41
|
+
warning_code: "being_deleted";
|
|
42
|
+
}, {
|
|
43
|
+
message: string;
|
|
44
|
+
created_at: string;
|
|
45
|
+
warning_code: "being_deleted";
|
|
46
|
+
}>>>;
|
|
33
47
|
}, "strip", z.ZodTypeAny, {
|
|
48
|
+
being_deleted?: {
|
|
49
|
+
message: string;
|
|
50
|
+
created_at: string;
|
|
51
|
+
warning_code: "being_deleted";
|
|
52
|
+
} | null | undefined;
|
|
34
53
|
unknown_issue_with_acs_access_group?: {
|
|
35
54
|
message: string;
|
|
36
55
|
created_at: string;
|
|
37
56
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
38
57
|
} | null | undefined;
|
|
39
58
|
}, {
|
|
59
|
+
being_deleted?: {
|
|
60
|
+
message: string;
|
|
61
|
+
created_at: string;
|
|
62
|
+
warning_code: "being_deleted";
|
|
63
|
+
} | null | undefined;
|
|
40
64
|
unknown_issue_with_acs_access_group?: {
|
|
41
65
|
message: string;
|
|
42
66
|
created_at: string;
|
|
@@ -56,7 +80,7 @@ export declare const acs_access_group: z.ZodObject<{
|
|
|
56
80
|
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group"]>;
|
|
57
81
|
external_type_display_name: z.ZodString;
|
|
58
82
|
created_at: z.ZodString;
|
|
59
|
-
warnings: z.ZodArray<z.ZodObject<{
|
|
83
|
+
warnings: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
60
84
|
created_at: z.ZodString;
|
|
61
85
|
message: z.ZodString;
|
|
62
86
|
} & {
|
|
@@ -69,7 +93,20 @@ export declare const acs_access_group: z.ZodObject<{
|
|
|
69
93
|
message: string;
|
|
70
94
|
created_at: string;
|
|
71
95
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
72
|
-
}>,
|
|
96
|
+
}>, z.ZodObject<{
|
|
97
|
+
created_at: z.ZodString;
|
|
98
|
+
message: z.ZodString;
|
|
99
|
+
} & {
|
|
100
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
101
|
+
}, "strip", z.ZodTypeAny, {
|
|
102
|
+
message: string;
|
|
103
|
+
created_at: string;
|
|
104
|
+
warning_code: "being_deleted";
|
|
105
|
+
}, {
|
|
106
|
+
message: string;
|
|
107
|
+
created_at: string;
|
|
108
|
+
warning_code: "being_deleted";
|
|
109
|
+
}>]>, "many">;
|
|
73
110
|
} & {
|
|
74
111
|
is_managed: z.ZodLiteral<true>;
|
|
75
112
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -78,11 +115,15 @@ export declare const acs_access_group: z.ZodObject<{
|
|
|
78
115
|
workspace_id: string;
|
|
79
116
|
created_at: string;
|
|
80
117
|
connected_account_id: string;
|
|
81
|
-
warnings: {
|
|
118
|
+
warnings: ({
|
|
82
119
|
message: string;
|
|
83
120
|
created_at: string;
|
|
84
121
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
85
|
-
}
|
|
122
|
+
} | {
|
|
123
|
+
message: string;
|
|
124
|
+
created_at: string;
|
|
125
|
+
warning_code: "being_deleted";
|
|
126
|
+
})[];
|
|
86
127
|
is_managed: true;
|
|
87
128
|
acs_access_group_id: string;
|
|
88
129
|
acs_system_id: string;
|
|
@@ -96,11 +137,15 @@ export declare const acs_access_group: z.ZodObject<{
|
|
|
96
137
|
workspace_id: string;
|
|
97
138
|
created_at: string;
|
|
98
139
|
connected_account_id: string;
|
|
99
|
-
warnings: {
|
|
140
|
+
warnings: ({
|
|
100
141
|
message: string;
|
|
101
142
|
created_at: string;
|
|
102
143
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
103
|
-
}
|
|
144
|
+
} | {
|
|
145
|
+
message: string;
|
|
146
|
+
created_at: string;
|
|
147
|
+
warning_code: "being_deleted";
|
|
148
|
+
})[];
|
|
104
149
|
is_managed: true;
|
|
105
150
|
acs_access_group_id: string;
|
|
106
151
|
acs_system_id: string;
|
|
@@ -121,7 +166,7 @@ export declare const unmanaged_acs_access_group: z.ZodObject<{
|
|
|
121
166
|
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group"]>;
|
|
122
167
|
external_type_display_name: z.ZodString;
|
|
123
168
|
created_at: z.ZodString;
|
|
124
|
-
warnings: z.ZodArray<z.ZodObject<{
|
|
169
|
+
warnings: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
125
170
|
created_at: z.ZodString;
|
|
126
171
|
message: z.ZodString;
|
|
127
172
|
} & {
|
|
@@ -134,7 +179,20 @@ export declare const unmanaged_acs_access_group: z.ZodObject<{
|
|
|
134
179
|
message: string;
|
|
135
180
|
created_at: string;
|
|
136
181
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
137
|
-
}>,
|
|
182
|
+
}>, z.ZodObject<{
|
|
183
|
+
created_at: z.ZodString;
|
|
184
|
+
message: z.ZodString;
|
|
185
|
+
} & {
|
|
186
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
187
|
+
}, "strip", z.ZodTypeAny, {
|
|
188
|
+
message: string;
|
|
189
|
+
created_at: string;
|
|
190
|
+
warning_code: "being_deleted";
|
|
191
|
+
}, {
|
|
192
|
+
message: string;
|
|
193
|
+
created_at: string;
|
|
194
|
+
warning_code: "being_deleted";
|
|
195
|
+
}>]>, "many">;
|
|
138
196
|
} & {
|
|
139
197
|
is_managed: z.ZodLiteral<false>;
|
|
140
198
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -143,11 +201,15 @@ export declare const unmanaged_acs_access_group: z.ZodObject<{
|
|
|
143
201
|
workspace_id: string;
|
|
144
202
|
created_at: string;
|
|
145
203
|
connected_account_id: string;
|
|
146
|
-
warnings: {
|
|
204
|
+
warnings: ({
|
|
147
205
|
message: string;
|
|
148
206
|
created_at: string;
|
|
149
207
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
150
|
-
}
|
|
208
|
+
} | {
|
|
209
|
+
message: string;
|
|
210
|
+
created_at: string;
|
|
211
|
+
warning_code: "being_deleted";
|
|
212
|
+
})[];
|
|
151
213
|
is_managed: false;
|
|
152
214
|
acs_access_group_id: string;
|
|
153
215
|
acs_system_id: string;
|
|
@@ -161,11 +223,15 @@ export declare const unmanaged_acs_access_group: z.ZodObject<{
|
|
|
161
223
|
workspace_id: string;
|
|
162
224
|
created_at: string;
|
|
163
225
|
connected_account_id: string;
|
|
164
|
-
warnings: {
|
|
226
|
+
warnings: ({
|
|
165
227
|
message: string;
|
|
166
228
|
created_at: string;
|
|
167
229
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
168
|
-
}
|
|
230
|
+
} | {
|
|
231
|
+
message: string;
|
|
232
|
+
created_at: string;
|
|
233
|
+
warning_code: "being_deleted";
|
|
234
|
+
})[];
|
|
169
235
|
is_managed: false;
|
|
170
236
|
acs_access_group_id: string;
|
|
171
237
|
acs_system_id: string;
|
|
@@ -26,11 +26,19 @@ export const unknown_issue_with_acs_access_group = common_acs_access_group_warni
|
|
|
26
26
|
.describe(warning_code_description),
|
|
27
27
|
})
|
|
28
28
|
.describe('An unknown issue occurred while syncing the state of this access group with the provider. This issue may affect the proper functioning of this access group.');
|
|
29
|
-
const
|
|
29
|
+
const acs_access_group_being_deleted = common_acs_access_group_warning
|
|
30
|
+
.extend({
|
|
31
|
+
warning_code: z.literal('being_deleted').describe(warning_code_description),
|
|
32
|
+
})
|
|
33
|
+
.describe('Indicates that the access group is being deleted from the access system. This is a temporary state, and the access group will be deleted shortly.');
|
|
34
|
+
const acs_access_group_warning = z
|
|
35
|
+
.union([unknown_issue_with_acs_access_group, acs_access_group_being_deleted])
|
|
36
|
+
.describe('Warning associated with the `acs_access_group`.');
|
|
30
37
|
const _acs_access_group_warning_map = z.object({
|
|
31
38
|
unknown_issue_with_acs_access_group: unknown_issue_with_acs_access_group
|
|
32
39
|
.optional()
|
|
33
40
|
.nullable(),
|
|
41
|
+
being_deleted: acs_access_group_being_deleted.optional().nullable(),
|
|
34
42
|
});
|
|
35
43
|
const common_acs_access_group = z.object({
|
|
36
44
|
acs_access_group_id: z.string().uuid().describe('ID of the access group.'),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"acs-access-group.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-access-group.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,0EAA0E;AAC1E,MAAM,CAAC,MAAM,8BAA8B,GAAG,CAAC,CAAC,IAAI,CAAC;IACnD,UAAU;IACV,kBAAkB;IAClB,uBAAuB;IACvB,aAAa;IACb,mBAAmB;IACnB,kCAAkC;IAClC,iCAAiC;CAClC,CAAC,CAAA;AAMF,MAAM,+BAA+B,GAAG,CAAC,CAAC,MAAM,CAAC;IAC/C,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CAAC,kDAAkD,CAAC;IAC/D,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,CACP,0GAA0G,CAC3G;CACJ,CAAC,CAAA;AAEF,MAAM,wBAAwB,GAC5B,sGAAsG,CAAA;AAExG,MAAM,CAAC,MAAM,mCAAmC,GAC9C,+BAA+B;KAC5B,MAAM,CAAC;IACN,YAAY,EAAE,CAAC;SACZ,OAAO,CAAC,qCAAqC,CAAC;SAC9C,QAAQ,CAAC,wBAAwB,CAAC;CACtC,CAAC;KACD,QAAQ,CACP,8JAA8J,CAC/J,CAAA;AAEL,MAAM,wBAAwB,GAAG,mCAAmC,CAAC,QAAQ,
|
|
1
|
+
{"version":3,"file":"acs-access-group.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/acs/acs-access-group.ts"],"names":[],"mappings":"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"}
|
|
@@ -6099,7 +6099,7 @@ export declare const batch: z.ZodObject<{
|
|
|
6099
6099
|
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group"]>;
|
|
6100
6100
|
external_type_display_name: z.ZodString;
|
|
6101
6101
|
created_at: z.ZodString;
|
|
6102
|
-
warnings: z.ZodArray<z.ZodObject<{
|
|
6102
|
+
warnings: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
6103
6103
|
created_at: z.ZodString;
|
|
6104
6104
|
message: z.ZodString;
|
|
6105
6105
|
} & {
|
|
@@ -6112,7 +6112,20 @@ export declare const batch: z.ZodObject<{
|
|
|
6112
6112
|
message: string;
|
|
6113
6113
|
created_at: string;
|
|
6114
6114
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
6115
|
-
}>,
|
|
6115
|
+
}>, z.ZodObject<{
|
|
6116
|
+
created_at: z.ZodString;
|
|
6117
|
+
message: z.ZodString;
|
|
6118
|
+
} & {
|
|
6119
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
6120
|
+
}, "strip", z.ZodTypeAny, {
|
|
6121
|
+
message: string;
|
|
6122
|
+
created_at: string;
|
|
6123
|
+
warning_code: "being_deleted";
|
|
6124
|
+
}, {
|
|
6125
|
+
message: string;
|
|
6126
|
+
created_at: string;
|
|
6127
|
+
warning_code: "being_deleted";
|
|
6128
|
+
}>]>, "many">;
|
|
6116
6129
|
} & {
|
|
6117
6130
|
is_managed: z.ZodLiteral<true>;
|
|
6118
6131
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -6121,11 +6134,15 @@ export declare const batch: z.ZodObject<{
|
|
|
6121
6134
|
workspace_id: string;
|
|
6122
6135
|
created_at: string;
|
|
6123
6136
|
connected_account_id: string;
|
|
6124
|
-
warnings: {
|
|
6137
|
+
warnings: ({
|
|
6125
6138
|
message: string;
|
|
6126
6139
|
created_at: string;
|
|
6127
6140
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
6128
|
-
}
|
|
6141
|
+
} | {
|
|
6142
|
+
message: string;
|
|
6143
|
+
created_at: string;
|
|
6144
|
+
warning_code: "being_deleted";
|
|
6145
|
+
})[];
|
|
6129
6146
|
is_managed: true;
|
|
6130
6147
|
acs_access_group_id: string;
|
|
6131
6148
|
acs_system_id: string;
|
|
@@ -6139,11 +6156,15 @@ export declare const batch: z.ZodObject<{
|
|
|
6139
6156
|
workspace_id: string;
|
|
6140
6157
|
created_at: string;
|
|
6141
6158
|
connected_account_id: string;
|
|
6142
|
-
warnings: {
|
|
6159
|
+
warnings: ({
|
|
6143
6160
|
message: string;
|
|
6144
6161
|
created_at: string;
|
|
6145
6162
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
6146
|
-
}
|
|
6163
|
+
} | {
|
|
6164
|
+
message: string;
|
|
6165
|
+
created_at: string;
|
|
6166
|
+
warning_code: "being_deleted";
|
|
6167
|
+
})[];
|
|
6147
6168
|
is_managed: true;
|
|
6148
6169
|
acs_access_group_id: string;
|
|
6149
6170
|
acs_system_id: string;
|
|
@@ -11355,7 +11376,7 @@ export declare const batch: z.ZodObject<{
|
|
|
11355
11376
|
external_type: z.ZodEnum<["pti_unit", "pti_access_level", "salto_ks_access_group", "brivo_group", "salto_space_group", "dormakaba_community_access_group", "dormakaba_ambiance_access_group"]>;
|
|
11356
11377
|
external_type_display_name: z.ZodString;
|
|
11357
11378
|
created_at: z.ZodString;
|
|
11358
|
-
warnings: z.ZodArray<z.ZodObject<{
|
|
11379
|
+
warnings: z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
11359
11380
|
created_at: z.ZodString;
|
|
11360
11381
|
message: z.ZodString;
|
|
11361
11382
|
} & {
|
|
@@ -11368,7 +11389,20 @@ export declare const batch: z.ZodObject<{
|
|
|
11368
11389
|
message: string;
|
|
11369
11390
|
created_at: string;
|
|
11370
11391
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
11371
|
-
}>,
|
|
11392
|
+
}>, z.ZodObject<{
|
|
11393
|
+
created_at: z.ZodString;
|
|
11394
|
+
message: z.ZodString;
|
|
11395
|
+
} & {
|
|
11396
|
+
warning_code: z.ZodLiteral<"being_deleted">;
|
|
11397
|
+
}, "strip", z.ZodTypeAny, {
|
|
11398
|
+
message: string;
|
|
11399
|
+
created_at: string;
|
|
11400
|
+
warning_code: "being_deleted";
|
|
11401
|
+
}, {
|
|
11402
|
+
message: string;
|
|
11403
|
+
created_at: string;
|
|
11404
|
+
warning_code: "being_deleted";
|
|
11405
|
+
}>]>, "many">;
|
|
11372
11406
|
} & {
|
|
11373
11407
|
is_managed: z.ZodLiteral<false>;
|
|
11374
11408
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -11377,11 +11411,15 @@ export declare const batch: z.ZodObject<{
|
|
|
11377
11411
|
workspace_id: string;
|
|
11378
11412
|
created_at: string;
|
|
11379
11413
|
connected_account_id: string;
|
|
11380
|
-
warnings: {
|
|
11414
|
+
warnings: ({
|
|
11381
11415
|
message: string;
|
|
11382
11416
|
created_at: string;
|
|
11383
11417
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
11384
|
-
}
|
|
11418
|
+
} | {
|
|
11419
|
+
message: string;
|
|
11420
|
+
created_at: string;
|
|
11421
|
+
warning_code: "being_deleted";
|
|
11422
|
+
})[];
|
|
11385
11423
|
is_managed: false;
|
|
11386
11424
|
acs_access_group_id: string;
|
|
11387
11425
|
acs_system_id: string;
|
|
@@ -11395,11 +11433,15 @@ export declare const batch: z.ZodObject<{
|
|
|
11395
11433
|
workspace_id: string;
|
|
11396
11434
|
created_at: string;
|
|
11397
11435
|
connected_account_id: string;
|
|
11398
|
-
warnings: {
|
|
11436
|
+
warnings: ({
|
|
11399
11437
|
message: string;
|
|
11400
11438
|
created_at: string;
|
|
11401
11439
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
11402
|
-
}
|
|
11440
|
+
} | {
|
|
11441
|
+
message: string;
|
|
11442
|
+
created_at: string;
|
|
11443
|
+
warning_code: "being_deleted";
|
|
11444
|
+
})[];
|
|
11403
11445
|
is_managed: false;
|
|
11404
11446
|
acs_access_group_id: string;
|
|
11405
11447
|
acs_system_id: string;
|
|
@@ -22612,11 +22654,15 @@ export declare const batch: z.ZodObject<{
|
|
|
22612
22654
|
workspace_id: string;
|
|
22613
22655
|
created_at: string;
|
|
22614
22656
|
connected_account_id: string;
|
|
22615
|
-
warnings: {
|
|
22657
|
+
warnings: ({
|
|
22616
22658
|
message: string;
|
|
22617
22659
|
created_at: string;
|
|
22618
22660
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
22619
|
-
}
|
|
22661
|
+
} | {
|
|
22662
|
+
message: string;
|
|
22663
|
+
created_at: string;
|
|
22664
|
+
warning_code: "being_deleted";
|
|
22665
|
+
})[];
|
|
22620
22666
|
is_managed: true;
|
|
22621
22667
|
acs_access_group_id: string;
|
|
22622
22668
|
acs_system_id: string;
|
|
@@ -23662,11 +23708,15 @@ export declare const batch: z.ZodObject<{
|
|
|
23662
23708
|
workspace_id: string;
|
|
23663
23709
|
created_at: string;
|
|
23664
23710
|
connected_account_id: string;
|
|
23665
|
-
warnings: {
|
|
23711
|
+
warnings: ({
|
|
23666
23712
|
message: string;
|
|
23667
23713
|
created_at: string;
|
|
23668
23714
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
23669
|
-
}
|
|
23715
|
+
} | {
|
|
23716
|
+
message: string;
|
|
23717
|
+
created_at: string;
|
|
23718
|
+
warning_code: "being_deleted";
|
|
23719
|
+
})[];
|
|
23670
23720
|
is_managed: false;
|
|
23671
23721
|
acs_access_group_id: string;
|
|
23672
23722
|
acs_system_id: string;
|
|
@@ -26670,11 +26720,15 @@ export declare const batch: z.ZodObject<{
|
|
|
26670
26720
|
workspace_id: string;
|
|
26671
26721
|
created_at: string;
|
|
26672
26722
|
connected_account_id: string;
|
|
26673
|
-
warnings: {
|
|
26723
|
+
warnings: ({
|
|
26674
26724
|
message: string;
|
|
26675
26725
|
created_at: string;
|
|
26676
26726
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
26677
|
-
}
|
|
26727
|
+
} | {
|
|
26728
|
+
message: string;
|
|
26729
|
+
created_at: string;
|
|
26730
|
+
warning_code: "being_deleted";
|
|
26731
|
+
})[];
|
|
26678
26732
|
is_managed: true;
|
|
26679
26733
|
acs_access_group_id: string;
|
|
26680
26734
|
acs_system_id: string;
|
|
@@ -27720,11 +27774,15 @@ export declare const batch: z.ZodObject<{
|
|
|
27720
27774
|
workspace_id: string;
|
|
27721
27775
|
created_at: string;
|
|
27722
27776
|
connected_account_id: string;
|
|
27723
|
-
warnings: {
|
|
27777
|
+
warnings: ({
|
|
27724
27778
|
message: string;
|
|
27725
27779
|
created_at: string;
|
|
27726
27780
|
warning_code: "unknown_issue_with_acs_access_group";
|
|
27727
|
-
}
|
|
27781
|
+
} | {
|
|
27782
|
+
message: string;
|
|
27783
|
+
created_at: string;
|
|
27784
|
+
warning_code: "being_deleted";
|
|
27785
|
+
})[];
|
|
27728
27786
|
is_managed: false;
|
|
27729
27787
|
acs_access_group_id: string;
|
|
27730
27788
|
acs_system_id: string;
|
|
@@ -698,24 +698,27 @@ declare const _default: {
|
|
|
698
698
|
description: string;
|
|
699
699
|
items: {
|
|
700
700
|
description: string;
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
701
|
+
oneOf: {
|
|
702
|
+
description: string;
|
|
703
|
+
properties: {
|
|
704
|
+
created_at: {
|
|
705
|
+
description: string;
|
|
706
|
+
format: string;
|
|
707
|
+
type: string;
|
|
708
|
+
};
|
|
709
|
+
message: {
|
|
710
|
+
description: string;
|
|
711
|
+
type: string;
|
|
712
|
+
};
|
|
713
|
+
warning_code: {
|
|
714
|
+
description: string;
|
|
715
|
+
enum: string[];
|
|
716
|
+
type: string;
|
|
717
|
+
};
|
|
715
718
|
};
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
+
required: string[];
|
|
720
|
+
type: string;
|
|
721
|
+
}[];
|
|
719
722
|
};
|
|
720
723
|
type: string;
|
|
721
724
|
};
|
|
@@ -13753,24 +13756,27 @@ declare const _default: {
|
|
|
13753
13756
|
description: string;
|
|
13754
13757
|
items: {
|
|
13755
13758
|
description: string;
|
|
13756
|
-
|
|
13757
|
-
|
|
13758
|
-
|
|
13759
|
-
|
|
13760
|
-
|
|
13761
|
-
|
|
13762
|
-
|
|
13763
|
-
|
|
13764
|
-
|
|
13765
|
-
|
|
13766
|
-
|
|
13767
|
-
|
|
13768
|
-
|
|
13769
|
-
|
|
13759
|
+
oneOf: {
|
|
13760
|
+
description: string;
|
|
13761
|
+
properties: {
|
|
13762
|
+
created_at: {
|
|
13763
|
+
description: string;
|
|
13764
|
+
format: string;
|
|
13765
|
+
type: string;
|
|
13766
|
+
};
|
|
13767
|
+
message: {
|
|
13768
|
+
description: string;
|
|
13769
|
+
type: string;
|
|
13770
|
+
};
|
|
13771
|
+
warning_code: {
|
|
13772
|
+
description: string;
|
|
13773
|
+
enum: string[];
|
|
13774
|
+
type: string;
|
|
13775
|
+
};
|
|
13770
13776
|
};
|
|
13771
|
-
|
|
13772
|
-
|
|
13773
|
-
|
|
13777
|
+
required: string[];
|
|
13778
|
+
type: string;
|
|
13779
|
+
}[];
|
|
13774
13780
|
};
|
|
13775
13781
|
type: string;
|
|
13776
13782
|
};
|
|
@@ -22475,6 +22481,145 @@ declare const _default: {
|
|
|
22475
22481
|
'x-title': string;
|
|
22476
22482
|
};
|
|
22477
22483
|
};
|
|
22484
|
+
'/acs/access_groups/delete': {
|
|
22485
|
+
delete: {
|
|
22486
|
+
description: string;
|
|
22487
|
+
operationId: string;
|
|
22488
|
+
parameters: {
|
|
22489
|
+
in: string;
|
|
22490
|
+
name: string;
|
|
22491
|
+
required: boolean;
|
|
22492
|
+
schema: {
|
|
22493
|
+
description: string;
|
|
22494
|
+
format: string;
|
|
22495
|
+
type: string;
|
|
22496
|
+
};
|
|
22497
|
+
}[];
|
|
22498
|
+
responses: {
|
|
22499
|
+
200: {
|
|
22500
|
+
content: {
|
|
22501
|
+
'application/json': {
|
|
22502
|
+
schema: {
|
|
22503
|
+
properties: {
|
|
22504
|
+
ok: {
|
|
22505
|
+
type: string;
|
|
22506
|
+
};
|
|
22507
|
+
};
|
|
22508
|
+
required: string[];
|
|
22509
|
+
type: string;
|
|
22510
|
+
};
|
|
22511
|
+
};
|
|
22512
|
+
};
|
|
22513
|
+
description: string;
|
|
22514
|
+
};
|
|
22515
|
+
400: {
|
|
22516
|
+
description: string;
|
|
22517
|
+
};
|
|
22518
|
+
401: {
|
|
22519
|
+
description: string;
|
|
22520
|
+
};
|
|
22521
|
+
};
|
|
22522
|
+
security: ({
|
|
22523
|
+
client_session: never[];
|
|
22524
|
+
pat_with_workspace?: never;
|
|
22525
|
+
console_session_with_workspace?: never;
|
|
22526
|
+
api_key?: never;
|
|
22527
|
+
} | {
|
|
22528
|
+
pat_with_workspace: never[];
|
|
22529
|
+
client_session?: never;
|
|
22530
|
+
console_session_with_workspace?: never;
|
|
22531
|
+
api_key?: never;
|
|
22532
|
+
} | {
|
|
22533
|
+
console_session_with_workspace: never[];
|
|
22534
|
+
client_session?: never;
|
|
22535
|
+
pat_with_workspace?: never;
|
|
22536
|
+
api_key?: never;
|
|
22537
|
+
} | {
|
|
22538
|
+
api_key: never[];
|
|
22539
|
+
client_session?: never;
|
|
22540
|
+
pat_with_workspace?: never;
|
|
22541
|
+
console_session_with_workspace?: never;
|
|
22542
|
+
})[];
|
|
22543
|
+
summary: string;
|
|
22544
|
+
tags: string[];
|
|
22545
|
+
'x-fern-sdk-group-name': string[];
|
|
22546
|
+
'x-fern-sdk-method-name': string;
|
|
22547
|
+
'x-response-key': null;
|
|
22548
|
+
'x-title': string;
|
|
22549
|
+
};
|
|
22550
|
+
post: {
|
|
22551
|
+
description: string;
|
|
22552
|
+
operationId: string;
|
|
22553
|
+
requestBody: {
|
|
22554
|
+
content: {
|
|
22555
|
+
'application/json': {
|
|
22556
|
+
schema: {
|
|
22557
|
+
properties: {
|
|
22558
|
+
acs_access_group_id: {
|
|
22559
|
+
description: string;
|
|
22560
|
+
format: string;
|
|
22561
|
+
type: string;
|
|
22562
|
+
};
|
|
22563
|
+
};
|
|
22564
|
+
required: string[];
|
|
22565
|
+
type: string;
|
|
22566
|
+
};
|
|
22567
|
+
};
|
|
22568
|
+
};
|
|
22569
|
+
};
|
|
22570
|
+
responses: {
|
|
22571
|
+
200: {
|
|
22572
|
+
content: {
|
|
22573
|
+
'application/json': {
|
|
22574
|
+
schema: {
|
|
22575
|
+
properties: {
|
|
22576
|
+
ok: {
|
|
22577
|
+
type: string;
|
|
22578
|
+
};
|
|
22579
|
+
};
|
|
22580
|
+
required: string[];
|
|
22581
|
+
type: string;
|
|
22582
|
+
};
|
|
22583
|
+
};
|
|
22584
|
+
};
|
|
22585
|
+
description: string;
|
|
22586
|
+
};
|
|
22587
|
+
400: {
|
|
22588
|
+
description: string;
|
|
22589
|
+
};
|
|
22590
|
+
401: {
|
|
22591
|
+
description: string;
|
|
22592
|
+
};
|
|
22593
|
+
};
|
|
22594
|
+
security: ({
|
|
22595
|
+
client_session: never[];
|
|
22596
|
+
pat_with_workspace?: never;
|
|
22597
|
+
console_session_with_workspace?: never;
|
|
22598
|
+
api_key?: never;
|
|
22599
|
+
} | {
|
|
22600
|
+
pat_with_workspace: never[];
|
|
22601
|
+
client_session?: never;
|
|
22602
|
+
console_session_with_workspace?: never;
|
|
22603
|
+
api_key?: never;
|
|
22604
|
+
} | {
|
|
22605
|
+
console_session_with_workspace: never[];
|
|
22606
|
+
client_session?: never;
|
|
22607
|
+
pat_with_workspace?: never;
|
|
22608
|
+
api_key?: never;
|
|
22609
|
+
} | {
|
|
22610
|
+
api_key: never[];
|
|
22611
|
+
client_session?: never;
|
|
22612
|
+
pat_with_workspace?: never;
|
|
22613
|
+
console_session_with_workspace?: never;
|
|
22614
|
+
})[];
|
|
22615
|
+
summary: string;
|
|
22616
|
+
tags: string[];
|
|
22617
|
+
'x-fern-sdk-group-name': string[];
|
|
22618
|
+
'x-fern-sdk-method-name': string;
|
|
22619
|
+
'x-response-key': null;
|
|
22620
|
+
'x-title': string;
|
|
22621
|
+
};
|
|
22622
|
+
};
|
|
22478
22623
|
'/acs/access_groups/get': {
|
|
22479
22624
|
get: {
|
|
22480
22625
|
description: string;
|