@seamapi/types 1.543.0 → 1.545.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 +342 -287
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +435 -380
- package/dist/index.cjs +342 -287
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
- package/lib/seam/connect/models/acs/acs-system.js +1 -0
- package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +40 -40
- package/lib/seam/connect/openapi.d.ts +354 -306
- package/lib/seam/connect/openapi.js +326 -272
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +65 -58
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-system.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +326 -272
- package/src/lib/seam/connect/route-types.ts +75 -52
package/dist/connect.cjs
CHANGED
|
@@ -2913,7 +2913,8 @@ var acs_system_external_type = zod.z.enum([
|
|
|
2913
2913
|
"dormakaba_ambiance_site",
|
|
2914
2914
|
"legic_connect_credential_service",
|
|
2915
2915
|
"assa_abloy_vostio",
|
|
2916
|
-
"assa_abloy_vostio_credential_service"
|
|
2916
|
+
"assa_abloy_vostio_credential_service",
|
|
2917
|
+
"hotek_site"
|
|
2917
2918
|
]);
|
|
2918
2919
|
var common_acs_system_error = zod.z.object({
|
|
2919
2920
|
created_at: zod.z.string().datetime().describe("Date and time at which Seam created the error."),
|
|
@@ -8436,7 +8437,8 @@ var openapi_default = {
|
|
|
8436
8437
|
"dormakaba_ambiance_site",
|
|
8437
8438
|
"legic_connect_credential_service",
|
|
8438
8439
|
"assa_abloy_vostio",
|
|
8439
|
-
"assa_abloy_vostio_credential_service"
|
|
8440
|
+
"assa_abloy_vostio_credential_service",
|
|
8441
|
+
"hotek_site"
|
|
8440
8442
|
],
|
|
8441
8443
|
type: "string"
|
|
8442
8444
|
},
|
|
@@ -8487,7 +8489,8 @@ var openapi_default = {
|
|
|
8487
8489
|
"dormakaba_ambiance_site",
|
|
8488
8490
|
"legic_connect_credential_service",
|
|
8489
8491
|
"assa_abloy_vostio",
|
|
8490
|
-
"assa_abloy_vostio_credential_service"
|
|
8492
|
+
"assa_abloy_vostio_credential_service",
|
|
8493
|
+
"hotek_site"
|
|
8491
8494
|
],
|
|
8492
8495
|
type: "string",
|
|
8493
8496
|
"x-deprecated": "Use `external_type`."
|
|
@@ -49126,168 +49129,185 @@ var openapi_default = {
|
|
|
49126
49129
|
ok: { type: "boolean" },
|
|
49127
49130
|
pagination: { $ref: "#/components/schemas/pagination" },
|
|
49128
49131
|
timeline: {
|
|
49129
|
-
|
|
49130
|
-
|
|
49131
|
-
|
|
49132
|
-
|
|
49133
|
-
{
|
|
49134
|
-
|
|
49135
|
-
|
|
49136
|
-
|
|
49137
|
-
|
|
49138
|
-
|
|
49139
|
-
|
|
49140
|
-
|
|
49141
|
-
|
|
49142
|
-
|
|
49132
|
+
properties: {
|
|
49133
|
+
groups: {
|
|
49134
|
+
items: {
|
|
49135
|
+
properties: {
|
|
49136
|
+
context: {
|
|
49137
|
+
oneOf: [
|
|
49138
|
+
{
|
|
49139
|
+
properties: {
|
|
49140
|
+
context_type: {
|
|
49141
|
+
enum: ["request"],
|
|
49142
|
+
type: "string"
|
|
49143
|
+
},
|
|
49144
|
+
request_id: { type: "string" },
|
|
49145
|
+
request_payload: {
|
|
49146
|
+
additionalProperties: {
|
|
49147
|
+
$ref: "#/components/schemas/access_code"
|
|
49148
|
+
},
|
|
49149
|
+
type: "object"
|
|
49150
|
+
},
|
|
49151
|
+
response_payload: {
|
|
49152
|
+
additionalProperties: {
|
|
49153
|
+
$ref: "#/components/schemas/access_code"
|
|
49154
|
+
},
|
|
49155
|
+
type: "object"
|
|
49156
|
+
}
|
|
49143
49157
|
},
|
|
49158
|
+
required: [
|
|
49159
|
+
"context_type",
|
|
49160
|
+
"request_id",
|
|
49161
|
+
"request_payload",
|
|
49162
|
+
"response_payload"
|
|
49163
|
+
],
|
|
49144
49164
|
type: "object"
|
|
49145
49165
|
},
|
|
49146
|
-
|
|
49147
|
-
|
|
49148
|
-
|
|
49166
|
+
{
|
|
49167
|
+
properties: {
|
|
49168
|
+
context_type: {
|
|
49169
|
+
enum: ["job"],
|
|
49170
|
+
type: "string"
|
|
49171
|
+
},
|
|
49172
|
+
job_id: { type: "string" }
|
|
49149
49173
|
},
|
|
49174
|
+
required: ["context_type", "job_id"],
|
|
49150
49175
|
type: "object"
|
|
49151
49176
|
}
|
|
49152
|
-
|
|
49153
|
-
required: [
|
|
49154
|
-
"context_type",
|
|
49155
|
-
"request_id",
|
|
49156
|
-
"request_payload",
|
|
49157
|
-
"response_payload"
|
|
49158
|
-
],
|
|
49159
|
-
type: "object"
|
|
49177
|
+
]
|
|
49160
49178
|
},
|
|
49161
|
-
{
|
|
49162
|
-
|
|
49163
|
-
|
|
49164
|
-
|
|
49165
|
-
|
|
49166
|
-
|
|
49167
|
-
|
|
49168
|
-
|
|
49169
|
-
|
|
49170
|
-
|
|
49171
|
-
|
|
49172
|
-
|
|
49173
|
-
|
|
49174
|
-
created_at: { type: "string" },
|
|
49175
|
-
entries: {
|
|
49176
|
-
items: {
|
|
49177
|
-
properties: {
|
|
49178
|
-
body: {
|
|
49179
|
-
oneOf: [
|
|
49180
|
-
{
|
|
49181
|
-
properties: {
|
|
49182
|
-
description: { type: "string" },
|
|
49183
|
-
entry_type: {
|
|
49184
|
-
enum: ["resource_created"],
|
|
49185
|
-
type: "string"
|
|
49186
|
-
}
|
|
49187
|
-
},
|
|
49188
|
-
required: ["entry_type", "description"],
|
|
49189
|
-
type: "object"
|
|
49190
|
-
},
|
|
49191
|
-
{
|
|
49192
|
-
properties: {
|
|
49193
|
-
description: { type: "string" },
|
|
49194
|
-
entry_type: {
|
|
49195
|
-
enum: ["resource_updated"],
|
|
49196
|
-
type: "string"
|
|
49197
|
-
},
|
|
49198
|
-
errors: {
|
|
49199
|
-
items: { type: "string" },
|
|
49200
|
-
type: "array"
|
|
49201
|
-
},
|
|
49202
|
-
properties_updated: {
|
|
49203
|
-
additionalProperties: {
|
|
49204
|
-
$ref: "#/components/schemas/access_code"
|
|
49179
|
+
created_at: { type: "string" },
|
|
49180
|
+
entries: {
|
|
49181
|
+
items: {
|
|
49182
|
+
properties: {
|
|
49183
|
+
body: {
|
|
49184
|
+
oneOf: [
|
|
49185
|
+
{
|
|
49186
|
+
properties: {
|
|
49187
|
+
description: { type: "string" },
|
|
49188
|
+
entry_type: {
|
|
49189
|
+
enum: ["resource_created"],
|
|
49190
|
+
type: "string"
|
|
49191
|
+
}
|
|
49205
49192
|
},
|
|
49193
|
+
required: [
|
|
49194
|
+
"entry_type",
|
|
49195
|
+
"description"
|
|
49196
|
+
],
|
|
49206
49197
|
type: "object"
|
|
49207
49198
|
},
|
|
49208
|
-
|
|
49209
|
-
|
|
49210
|
-
|
|
49211
|
-
|
|
49212
|
-
|
|
49213
|
-
|
|
49214
|
-
|
|
49215
|
-
|
|
49216
|
-
|
|
49217
|
-
|
|
49218
|
-
|
|
49219
|
-
|
|
49220
|
-
|
|
49221
|
-
|
|
49222
|
-
|
|
49223
|
-
|
|
49224
|
-
|
|
49225
|
-
|
|
49226
|
-
|
|
49227
|
-
|
|
49228
|
-
|
|
49229
|
-
|
|
49230
|
-
|
|
49231
|
-
|
|
49199
|
+
{
|
|
49200
|
+
properties: {
|
|
49201
|
+
description: { type: "string" },
|
|
49202
|
+
entry_type: {
|
|
49203
|
+
enum: ["resource_updated"],
|
|
49204
|
+
type: "string"
|
|
49205
|
+
},
|
|
49206
|
+
errors: {
|
|
49207
|
+
items: { type: "string" },
|
|
49208
|
+
type: "array"
|
|
49209
|
+
},
|
|
49210
|
+
properties_updated: {
|
|
49211
|
+
additionalProperties: {
|
|
49212
|
+
$ref: "#/components/schemas/access_code"
|
|
49213
|
+
},
|
|
49214
|
+
type: "object"
|
|
49215
|
+
},
|
|
49216
|
+
warnings: {
|
|
49217
|
+
items: { type: "string" },
|
|
49218
|
+
type: "array"
|
|
49219
|
+
}
|
|
49220
|
+
},
|
|
49221
|
+
required: [
|
|
49222
|
+
"entry_type",
|
|
49223
|
+
"description"
|
|
49224
|
+
],
|
|
49225
|
+
type: "object"
|
|
49232
49226
|
},
|
|
49233
|
-
|
|
49234
|
-
|
|
49235
|
-
|
|
49236
|
-
|
|
49237
|
-
|
|
49238
|
-
|
|
49239
|
-
|
|
49240
|
-
|
|
49241
|
-
|
|
49242
|
-
|
|
49243
|
-
|
|
49244
|
-
|
|
49245
|
-
|
|
49246
|
-
entry_type: {
|
|
49247
|
-
enum: ["provider_call"],
|
|
49248
|
-
type: "string"
|
|
49227
|
+
{
|
|
49228
|
+
properties: {
|
|
49229
|
+
description: { type: "string" },
|
|
49230
|
+
entry_type: {
|
|
49231
|
+
enum: ["resource_deleted"],
|
|
49232
|
+
type: "string"
|
|
49233
|
+
}
|
|
49234
|
+
},
|
|
49235
|
+
required: [
|
|
49236
|
+
"entry_type",
|
|
49237
|
+
"description"
|
|
49238
|
+
],
|
|
49239
|
+
type: "object"
|
|
49249
49240
|
},
|
|
49250
|
-
|
|
49251
|
-
|
|
49252
|
-
|
|
49241
|
+
{
|
|
49242
|
+
properties: {
|
|
49243
|
+
entry_type: {
|
|
49244
|
+
enum: ["event"],
|
|
49245
|
+
type: "string"
|
|
49246
|
+
},
|
|
49247
|
+
event_id: { type: "string" },
|
|
49248
|
+
event_type: { type: "string" }
|
|
49253
49249
|
},
|
|
49250
|
+
required: [
|
|
49251
|
+
"entry_type",
|
|
49252
|
+
"event_type",
|
|
49253
|
+
"event_id"
|
|
49254
|
+
],
|
|
49254
49255
|
type: "object"
|
|
49255
49256
|
},
|
|
49256
|
-
|
|
49257
|
-
|
|
49258
|
-
|
|
49257
|
+
{
|
|
49258
|
+
properties: {
|
|
49259
|
+
description: { type: "string" },
|
|
49260
|
+
entry_type: {
|
|
49261
|
+
enum: ["provider_call"],
|
|
49262
|
+
type: "string"
|
|
49263
|
+
},
|
|
49264
|
+
response_body: {
|
|
49265
|
+
additionalProperties: {
|
|
49266
|
+
$ref: "#/components/schemas/access_code"
|
|
49267
|
+
},
|
|
49268
|
+
type: "object"
|
|
49269
|
+
},
|
|
49270
|
+
response_status_code: {
|
|
49271
|
+
format: "float",
|
|
49272
|
+
type: "number"
|
|
49273
|
+
}
|
|
49274
|
+
},
|
|
49275
|
+
required: [
|
|
49276
|
+
"entry_type",
|
|
49277
|
+
"description",
|
|
49278
|
+
"response_status_code"
|
|
49279
|
+
],
|
|
49280
|
+
type: "object"
|
|
49259
49281
|
}
|
|
49260
|
-
|
|
49261
|
-
|
|
49262
|
-
|
|
49263
|
-
|
|
49264
|
-
|
|
49265
|
-
|
|
49266
|
-
|
|
49267
|
-
|
|
49268
|
-
|
|
49282
|
+
]
|
|
49283
|
+
},
|
|
49284
|
+
created_at: { type: "string" },
|
|
49285
|
+
entry_type: { type: "string" },
|
|
49286
|
+
resource_id: { type: "string" },
|
|
49287
|
+
resource_type: { type: "string" }
|
|
49288
|
+
},
|
|
49289
|
+
required: [
|
|
49290
|
+
"resource_type",
|
|
49291
|
+
"resource_id",
|
|
49292
|
+
"entry_type",
|
|
49293
|
+
"body",
|
|
49294
|
+
"created_at"
|
|
49295
|
+
],
|
|
49296
|
+
type: "object"
|
|
49269
49297
|
},
|
|
49270
|
-
|
|
49271
|
-
|
|
49272
|
-
resource_id: { type: "string" },
|
|
49273
|
-
resource_type: { type: "string" }
|
|
49274
|
-
},
|
|
49275
|
-
required: [
|
|
49276
|
-
"resource_type",
|
|
49277
|
-
"resource_id",
|
|
49278
|
-
"entry_type",
|
|
49279
|
-
"body",
|
|
49280
|
-
"created_at"
|
|
49281
|
-
],
|
|
49282
|
-
type: "object"
|
|
49298
|
+
type: "array"
|
|
49299
|
+
}
|
|
49283
49300
|
},
|
|
49284
|
-
|
|
49285
|
-
|
|
49301
|
+
required: ["context", "entries", "created_at"],
|
|
49302
|
+
type: "object"
|
|
49303
|
+
},
|
|
49304
|
+
type: "array"
|
|
49286
49305
|
},
|
|
49287
|
-
|
|
49288
|
-
type: "
|
|
49306
|
+
resource_id: { type: "string" },
|
|
49307
|
+
resource_type: { type: "string" }
|
|
49289
49308
|
},
|
|
49290
|
-
|
|
49309
|
+
required: ["resource_type", "resource_id", "groups"],
|
|
49310
|
+
type: "object"
|
|
49291
49311
|
}
|
|
49292
49312
|
},
|
|
49293
49313
|
required: ["timeline", "pagination", "ok"],
|
|
@@ -49360,168 +49380,185 @@ var openapi_default = {
|
|
|
49360
49380
|
ok: { type: "boolean" },
|
|
49361
49381
|
pagination: { $ref: "#/components/schemas/pagination" },
|
|
49362
49382
|
timeline: {
|
|
49363
|
-
|
|
49364
|
-
|
|
49365
|
-
|
|
49366
|
-
|
|
49367
|
-
{
|
|
49368
|
-
|
|
49369
|
-
|
|
49370
|
-
|
|
49371
|
-
|
|
49372
|
-
|
|
49373
|
-
|
|
49374
|
-
|
|
49375
|
-
|
|
49376
|
-
|
|
49383
|
+
properties: {
|
|
49384
|
+
groups: {
|
|
49385
|
+
items: {
|
|
49386
|
+
properties: {
|
|
49387
|
+
context: {
|
|
49388
|
+
oneOf: [
|
|
49389
|
+
{
|
|
49390
|
+
properties: {
|
|
49391
|
+
context_type: {
|
|
49392
|
+
enum: ["request"],
|
|
49393
|
+
type: "string"
|
|
49394
|
+
},
|
|
49395
|
+
request_id: { type: "string" },
|
|
49396
|
+
request_payload: {
|
|
49397
|
+
additionalProperties: {
|
|
49398
|
+
$ref: "#/components/schemas/access_code"
|
|
49399
|
+
},
|
|
49400
|
+
type: "object"
|
|
49401
|
+
},
|
|
49402
|
+
response_payload: {
|
|
49403
|
+
additionalProperties: {
|
|
49404
|
+
$ref: "#/components/schemas/access_code"
|
|
49405
|
+
},
|
|
49406
|
+
type: "object"
|
|
49407
|
+
}
|
|
49377
49408
|
},
|
|
49409
|
+
required: [
|
|
49410
|
+
"context_type",
|
|
49411
|
+
"request_id",
|
|
49412
|
+
"request_payload",
|
|
49413
|
+
"response_payload"
|
|
49414
|
+
],
|
|
49378
49415
|
type: "object"
|
|
49379
49416
|
},
|
|
49380
|
-
|
|
49381
|
-
|
|
49382
|
-
|
|
49417
|
+
{
|
|
49418
|
+
properties: {
|
|
49419
|
+
context_type: {
|
|
49420
|
+
enum: ["job"],
|
|
49421
|
+
type: "string"
|
|
49422
|
+
},
|
|
49423
|
+
job_id: { type: "string" }
|
|
49383
49424
|
},
|
|
49425
|
+
required: ["context_type", "job_id"],
|
|
49384
49426
|
type: "object"
|
|
49385
49427
|
}
|
|
49386
|
-
|
|
49387
|
-
required: [
|
|
49388
|
-
"context_type",
|
|
49389
|
-
"request_id",
|
|
49390
|
-
"request_payload",
|
|
49391
|
-
"response_payload"
|
|
49392
|
-
],
|
|
49393
|
-
type: "object"
|
|
49428
|
+
]
|
|
49394
49429
|
},
|
|
49395
|
-
{
|
|
49396
|
-
|
|
49397
|
-
|
|
49398
|
-
|
|
49399
|
-
|
|
49400
|
-
|
|
49401
|
-
|
|
49402
|
-
|
|
49403
|
-
|
|
49404
|
-
|
|
49405
|
-
|
|
49406
|
-
|
|
49407
|
-
|
|
49408
|
-
created_at: { type: "string" },
|
|
49409
|
-
entries: {
|
|
49410
|
-
items: {
|
|
49411
|
-
properties: {
|
|
49412
|
-
body: {
|
|
49413
|
-
oneOf: [
|
|
49414
|
-
{
|
|
49415
|
-
properties: {
|
|
49416
|
-
description: { type: "string" },
|
|
49417
|
-
entry_type: {
|
|
49418
|
-
enum: ["resource_created"],
|
|
49419
|
-
type: "string"
|
|
49420
|
-
}
|
|
49421
|
-
},
|
|
49422
|
-
required: ["entry_type", "description"],
|
|
49423
|
-
type: "object"
|
|
49424
|
-
},
|
|
49425
|
-
{
|
|
49426
|
-
properties: {
|
|
49427
|
-
description: { type: "string" },
|
|
49428
|
-
entry_type: {
|
|
49429
|
-
enum: ["resource_updated"],
|
|
49430
|
-
type: "string"
|
|
49431
|
-
},
|
|
49432
|
-
errors: {
|
|
49433
|
-
items: { type: "string" },
|
|
49434
|
-
type: "array"
|
|
49435
|
-
},
|
|
49436
|
-
properties_updated: {
|
|
49437
|
-
additionalProperties: {
|
|
49438
|
-
$ref: "#/components/schemas/access_code"
|
|
49430
|
+
created_at: { type: "string" },
|
|
49431
|
+
entries: {
|
|
49432
|
+
items: {
|
|
49433
|
+
properties: {
|
|
49434
|
+
body: {
|
|
49435
|
+
oneOf: [
|
|
49436
|
+
{
|
|
49437
|
+
properties: {
|
|
49438
|
+
description: { type: "string" },
|
|
49439
|
+
entry_type: {
|
|
49440
|
+
enum: ["resource_created"],
|
|
49441
|
+
type: "string"
|
|
49442
|
+
}
|
|
49439
49443
|
},
|
|
49444
|
+
required: [
|
|
49445
|
+
"entry_type",
|
|
49446
|
+
"description"
|
|
49447
|
+
],
|
|
49440
49448
|
type: "object"
|
|
49441
49449
|
},
|
|
49442
|
-
|
|
49443
|
-
|
|
49444
|
-
|
|
49445
|
-
|
|
49446
|
-
|
|
49447
|
-
|
|
49448
|
-
|
|
49449
|
-
|
|
49450
|
-
|
|
49451
|
-
|
|
49452
|
-
|
|
49453
|
-
|
|
49454
|
-
|
|
49455
|
-
|
|
49456
|
-
|
|
49457
|
-
|
|
49458
|
-
|
|
49459
|
-
|
|
49460
|
-
|
|
49461
|
-
|
|
49462
|
-
|
|
49463
|
-
|
|
49464
|
-
|
|
49465
|
-
|
|
49450
|
+
{
|
|
49451
|
+
properties: {
|
|
49452
|
+
description: { type: "string" },
|
|
49453
|
+
entry_type: {
|
|
49454
|
+
enum: ["resource_updated"],
|
|
49455
|
+
type: "string"
|
|
49456
|
+
},
|
|
49457
|
+
errors: {
|
|
49458
|
+
items: { type: "string" },
|
|
49459
|
+
type: "array"
|
|
49460
|
+
},
|
|
49461
|
+
properties_updated: {
|
|
49462
|
+
additionalProperties: {
|
|
49463
|
+
$ref: "#/components/schemas/access_code"
|
|
49464
|
+
},
|
|
49465
|
+
type: "object"
|
|
49466
|
+
},
|
|
49467
|
+
warnings: {
|
|
49468
|
+
items: { type: "string" },
|
|
49469
|
+
type: "array"
|
|
49470
|
+
}
|
|
49471
|
+
},
|
|
49472
|
+
required: [
|
|
49473
|
+
"entry_type",
|
|
49474
|
+
"description"
|
|
49475
|
+
],
|
|
49476
|
+
type: "object"
|
|
49466
49477
|
},
|
|
49467
|
-
|
|
49468
|
-
|
|
49469
|
-
|
|
49470
|
-
|
|
49471
|
-
|
|
49472
|
-
|
|
49473
|
-
|
|
49474
|
-
|
|
49475
|
-
|
|
49476
|
-
|
|
49477
|
-
|
|
49478
|
-
|
|
49479
|
-
|
|
49480
|
-
entry_type: {
|
|
49481
|
-
enum: ["provider_call"],
|
|
49482
|
-
type: "string"
|
|
49478
|
+
{
|
|
49479
|
+
properties: {
|
|
49480
|
+
description: { type: "string" },
|
|
49481
|
+
entry_type: {
|
|
49482
|
+
enum: ["resource_deleted"],
|
|
49483
|
+
type: "string"
|
|
49484
|
+
}
|
|
49485
|
+
},
|
|
49486
|
+
required: [
|
|
49487
|
+
"entry_type",
|
|
49488
|
+
"description"
|
|
49489
|
+
],
|
|
49490
|
+
type: "object"
|
|
49483
49491
|
},
|
|
49484
|
-
|
|
49485
|
-
|
|
49486
|
-
|
|
49492
|
+
{
|
|
49493
|
+
properties: {
|
|
49494
|
+
entry_type: {
|
|
49495
|
+
enum: ["event"],
|
|
49496
|
+
type: "string"
|
|
49497
|
+
},
|
|
49498
|
+
event_id: { type: "string" },
|
|
49499
|
+
event_type: { type: "string" }
|
|
49487
49500
|
},
|
|
49501
|
+
required: [
|
|
49502
|
+
"entry_type",
|
|
49503
|
+
"event_type",
|
|
49504
|
+
"event_id"
|
|
49505
|
+
],
|
|
49488
49506
|
type: "object"
|
|
49489
49507
|
},
|
|
49490
|
-
|
|
49491
|
-
|
|
49492
|
-
|
|
49508
|
+
{
|
|
49509
|
+
properties: {
|
|
49510
|
+
description: { type: "string" },
|
|
49511
|
+
entry_type: {
|
|
49512
|
+
enum: ["provider_call"],
|
|
49513
|
+
type: "string"
|
|
49514
|
+
},
|
|
49515
|
+
response_body: {
|
|
49516
|
+
additionalProperties: {
|
|
49517
|
+
$ref: "#/components/schemas/access_code"
|
|
49518
|
+
},
|
|
49519
|
+
type: "object"
|
|
49520
|
+
},
|
|
49521
|
+
response_status_code: {
|
|
49522
|
+
format: "float",
|
|
49523
|
+
type: "number"
|
|
49524
|
+
}
|
|
49525
|
+
},
|
|
49526
|
+
required: [
|
|
49527
|
+
"entry_type",
|
|
49528
|
+
"description",
|
|
49529
|
+
"response_status_code"
|
|
49530
|
+
],
|
|
49531
|
+
type: "object"
|
|
49493
49532
|
}
|
|
49494
|
-
|
|
49495
|
-
|
|
49496
|
-
|
|
49497
|
-
|
|
49498
|
-
|
|
49499
|
-
|
|
49500
|
-
|
|
49501
|
-
|
|
49502
|
-
|
|
49533
|
+
]
|
|
49534
|
+
},
|
|
49535
|
+
created_at: { type: "string" },
|
|
49536
|
+
entry_type: { type: "string" },
|
|
49537
|
+
resource_id: { type: "string" },
|
|
49538
|
+
resource_type: { type: "string" }
|
|
49539
|
+
},
|
|
49540
|
+
required: [
|
|
49541
|
+
"resource_type",
|
|
49542
|
+
"resource_id",
|
|
49543
|
+
"entry_type",
|
|
49544
|
+
"body",
|
|
49545
|
+
"created_at"
|
|
49546
|
+
],
|
|
49547
|
+
type: "object"
|
|
49503
49548
|
},
|
|
49504
|
-
|
|
49505
|
-
|
|
49506
|
-
resource_id: { type: "string" },
|
|
49507
|
-
resource_type: { type: "string" }
|
|
49508
|
-
},
|
|
49509
|
-
required: [
|
|
49510
|
-
"resource_type",
|
|
49511
|
-
"resource_id",
|
|
49512
|
-
"entry_type",
|
|
49513
|
-
"body",
|
|
49514
|
-
"created_at"
|
|
49515
|
-
],
|
|
49516
|
-
type: "object"
|
|
49549
|
+
type: "array"
|
|
49550
|
+
}
|
|
49517
49551
|
},
|
|
49518
|
-
|
|
49519
|
-
|
|
49552
|
+
required: ["context", "entries", "created_at"],
|
|
49553
|
+
type: "object"
|
|
49554
|
+
},
|
|
49555
|
+
type: "array"
|
|
49520
49556
|
},
|
|
49521
|
-
|
|
49522
|
-
type: "
|
|
49557
|
+
resource_id: { type: "string" },
|
|
49558
|
+
resource_type: { type: "string" }
|
|
49523
49559
|
},
|
|
49524
|
-
|
|
49560
|
+
required: ["resource_type", "resource_id", "groups"],
|
|
49561
|
+
type: "object"
|
|
49525
49562
|
}
|
|
49526
49563
|
},
|
|
49527
49564
|
required: ["timeline", "pagination", "ok"],
|
|
@@ -49678,11 +49715,17 @@ var openapi_default = {
|
|
|
49678
49715
|
},
|
|
49679
49716
|
automation_run_id: { format: "uuid", type: "string" },
|
|
49680
49717
|
created_at: { type: "string" },
|
|
49718
|
+
partner_key: { nullable: true, type: "string" },
|
|
49681
49719
|
partner_resource_id: {
|
|
49682
49720
|
format: "uuid",
|
|
49683
49721
|
nullable: true,
|
|
49684
49722
|
type: "string"
|
|
49685
49723
|
},
|
|
49724
|
+
resource_type: { nullable: true, type: "string" },
|
|
49725
|
+
resource_type_alias: {
|
|
49726
|
+
nullable: true,
|
|
49727
|
+
type: "string"
|
|
49728
|
+
},
|
|
49686
49729
|
workspace_id: { format: "uuid", type: "string" }
|
|
49687
49730
|
},
|
|
49688
49731
|
required: [
|
|
@@ -49690,6 +49733,9 @@ var openapi_default = {
|
|
|
49690
49733
|
"workspace_id",
|
|
49691
49734
|
"automation_id",
|
|
49692
49735
|
"partner_resource_id",
|
|
49736
|
+
"partner_key",
|
|
49737
|
+
"resource_type",
|
|
49738
|
+
"resource_type_alias",
|
|
49693
49739
|
"created_at"
|
|
49694
49740
|
],
|
|
49695
49741
|
type: "object"
|
|
@@ -49831,11 +49877,17 @@ var openapi_default = {
|
|
|
49831
49877
|
},
|
|
49832
49878
|
automation_run_id: { format: "uuid", type: "string" },
|
|
49833
49879
|
created_at: { type: "string" },
|
|
49880
|
+
partner_key: { nullable: true, type: "string" },
|
|
49834
49881
|
partner_resource_id: {
|
|
49835
49882
|
format: "uuid",
|
|
49836
49883
|
nullable: true,
|
|
49837
49884
|
type: "string"
|
|
49838
49885
|
},
|
|
49886
|
+
resource_type: { nullable: true, type: "string" },
|
|
49887
|
+
resource_type_alias: {
|
|
49888
|
+
nullable: true,
|
|
49889
|
+
type: "string"
|
|
49890
|
+
},
|
|
49839
49891
|
workspace_id: { format: "uuid", type: "string" }
|
|
49840
49892
|
},
|
|
49841
49893
|
required: [
|
|
@@ -49843,6 +49895,9 @@ var openapi_default = {
|
|
|
49843
49895
|
"workspace_id",
|
|
49844
49896
|
"automation_id",
|
|
49845
49897
|
"partner_resource_id",
|
|
49898
|
+
"partner_key",
|
|
49899
|
+
"resource_type",
|
|
49900
|
+
"resource_type_alias",
|
|
49846
49901
|
"created_at"
|
|
49847
49902
|
],
|
|
49848
49903
|
type: "object"
|