@liaisongroup/assist-api-js-client 1.5.97 → 1.5.99
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/openapi.d.ts +13 -0
- package/dist/openapi.json +6 -1
- package/dist/openapi.zod.d.ts +22 -0
- package/dist/openapi.zod.js +1 -0
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -83,6 +83,11 @@ declare namespace Components {
|
|
|
83
83
|
display_name?: string;
|
|
84
84
|
inputs?: ActionTypeInputsOutputs;
|
|
85
85
|
outputs?: ActionTypeInputsOutputs;
|
|
86
|
+
/**
|
|
87
|
+
* example:
|
|
88
|
+
* true
|
|
89
|
+
*/
|
|
90
|
+
is_trigger?: boolean;
|
|
86
91
|
}
|
|
87
92
|
export interface ActionTypeData {
|
|
88
93
|
type: "action_type";
|
|
@@ -4141,6 +4146,10 @@ export interface OperationMethods {
|
|
|
4141
4146
|
): OperationResponse<Paths.DeleteActionError.Responses.$204>
|
|
4142
4147
|
/**
|
|
4143
4148
|
* get_action_types - Get action types
|
|
4149
|
+
*
|
|
4150
|
+
* Get all action types.
|
|
4151
|
+
* You can filter the results by `is_trigger` using the `filter[is_trigger_eq]`, `filter[is_trigger_true]`, or `filter[is_trigger_false]` query parameters.
|
|
4152
|
+
*
|
|
4144
4153
|
*/
|
|
4145
4154
|
'get_action_types'(
|
|
4146
4155
|
parameters?: Parameters<UnknownParamsObject> | null,
|
|
@@ -5182,6 +5191,10 @@ export interface PathsDictionary {
|
|
|
5182
5191
|
['/action_types']: {
|
|
5183
5192
|
/**
|
|
5184
5193
|
* get_action_types - Get action types
|
|
5194
|
+
*
|
|
5195
|
+
* Get all action types.
|
|
5196
|
+
* You can filter the results by `is_trigger` using the `filter[is_trigger_eq]`, `filter[is_trigger_true]`, or `filter[is_trigger_false]` query parameters.
|
|
5197
|
+
*
|
|
5185
5198
|
*/
|
|
5186
5199
|
'get'(
|
|
5187
5200
|
parameters?: Parameters<UnknownParamsObject> | null,
|
package/dist/openapi.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Liaison Assist API",
|
|
5
5
|
"description": "\n",
|
|
6
|
-
"version": "0.0.
|
|
6
|
+
"version": "0.0.328",
|
|
7
7
|
"license": {
|
|
8
8
|
"name": "MIT",
|
|
9
9
|
"url": "https://opensource.org/licenses/MIT"
|
|
@@ -1657,6 +1657,7 @@
|
|
|
1657
1657
|
"get": {
|
|
1658
1658
|
"operationId": "get_action_types",
|
|
1659
1659
|
"summary": "Get action types",
|
|
1660
|
+
"description": "Get all action types.\nYou can filter the results by `is_trigger` using the `filter[is_trigger_eq]`, `filter[is_trigger_true]`, or `filter[is_trigger_false]` query parameters.\n",
|
|
1660
1661
|
"tags": [
|
|
1661
1662
|
"Action Types"
|
|
1662
1663
|
],
|
|
@@ -9395,6 +9396,10 @@
|
|
|
9395
9396
|
},
|
|
9396
9397
|
"outputs": {
|
|
9397
9398
|
"$ref": "#/components/schemas/ActionTypeInputsOutputs"
|
|
9399
|
+
},
|
|
9400
|
+
"is_trigger": {
|
|
9401
|
+
"type": "boolean",
|
|
9402
|
+
"example": true
|
|
9398
9403
|
}
|
|
9399
9404
|
}
|
|
9400
9405
|
},
|
package/dist/openapi.zod.d.ts
CHANGED
|
@@ -6235,14 +6235,17 @@ export declare const ActionTypeAttributes: z.ZodObject<{
|
|
|
6235
6235
|
display_name: z.ZodOptional<z.ZodString>;
|
|
6236
6236
|
inputs: z.ZodOptional<z.ZodArray<z.ZodEnum<["resource_instance", "value", "attributes"]>, "many">>;
|
|
6237
6237
|
outputs: z.ZodOptional<z.ZodArray<z.ZodEnum<["resource_instance", "value", "attributes"]>, "many">>;
|
|
6238
|
+
is_trigger: z.ZodOptional<z.ZodBoolean>;
|
|
6238
6239
|
}, "strip", z.ZodTypeAny, {
|
|
6239
6240
|
display_name?: string | undefined;
|
|
6240
6241
|
inputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6241
6242
|
outputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6243
|
+
is_trigger?: boolean | undefined;
|
|
6242
6244
|
}, {
|
|
6243
6245
|
display_name?: string | undefined;
|
|
6244
6246
|
inputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6245
6247
|
outputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6248
|
+
is_trigger?: boolean | undefined;
|
|
6246
6249
|
}>;
|
|
6247
6250
|
export declare const ActionTypeData: z.ZodObject<{
|
|
6248
6251
|
type: z.ZodLiteral<"action_type">;
|
|
@@ -6251,14 +6254,17 @@ export declare const ActionTypeData: z.ZodObject<{
|
|
|
6251
6254
|
display_name: z.ZodOptional<z.ZodString>;
|
|
6252
6255
|
inputs: z.ZodOptional<z.ZodArray<z.ZodEnum<["resource_instance", "value", "attributes"]>, "many">>;
|
|
6253
6256
|
outputs: z.ZodOptional<z.ZodArray<z.ZodEnum<["resource_instance", "value", "attributes"]>, "many">>;
|
|
6257
|
+
is_trigger: z.ZodOptional<z.ZodBoolean>;
|
|
6254
6258
|
}, "strip", z.ZodTypeAny, {
|
|
6255
6259
|
display_name?: string | undefined;
|
|
6256
6260
|
inputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6257
6261
|
outputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6262
|
+
is_trigger?: boolean | undefined;
|
|
6258
6263
|
}, {
|
|
6259
6264
|
display_name?: string | undefined;
|
|
6260
6265
|
inputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6261
6266
|
outputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6267
|
+
is_trigger?: boolean | undefined;
|
|
6262
6268
|
}>;
|
|
6263
6269
|
}, "strip", z.ZodTypeAny, {
|
|
6264
6270
|
id: string;
|
|
@@ -6266,6 +6272,7 @@ export declare const ActionTypeData: z.ZodObject<{
|
|
|
6266
6272
|
display_name?: string | undefined;
|
|
6267
6273
|
inputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6268
6274
|
outputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6275
|
+
is_trigger?: boolean | undefined;
|
|
6269
6276
|
};
|
|
6270
6277
|
type: "action_type";
|
|
6271
6278
|
}, {
|
|
@@ -6274,6 +6281,7 @@ export declare const ActionTypeData: z.ZodObject<{
|
|
|
6274
6281
|
display_name?: string | undefined;
|
|
6275
6282
|
inputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6276
6283
|
outputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6284
|
+
is_trigger?: boolean | undefined;
|
|
6277
6285
|
};
|
|
6278
6286
|
type: "action_type";
|
|
6279
6287
|
}>;
|
|
@@ -6285,14 +6293,17 @@ export declare const ActionTypes: z.ZodObject<{
|
|
|
6285
6293
|
display_name: z.ZodOptional<z.ZodString>;
|
|
6286
6294
|
inputs: z.ZodOptional<z.ZodArray<z.ZodEnum<["resource_instance", "value", "attributes"]>, "many">>;
|
|
6287
6295
|
outputs: z.ZodOptional<z.ZodArray<z.ZodEnum<["resource_instance", "value", "attributes"]>, "many">>;
|
|
6296
|
+
is_trigger: z.ZodOptional<z.ZodBoolean>;
|
|
6288
6297
|
}, "strip", z.ZodTypeAny, {
|
|
6289
6298
|
display_name?: string | undefined;
|
|
6290
6299
|
inputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6291
6300
|
outputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6301
|
+
is_trigger?: boolean | undefined;
|
|
6292
6302
|
}, {
|
|
6293
6303
|
display_name?: string | undefined;
|
|
6294
6304
|
inputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6295
6305
|
outputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6306
|
+
is_trigger?: boolean | undefined;
|
|
6296
6307
|
}>;
|
|
6297
6308
|
}, "strip", z.ZodTypeAny, {
|
|
6298
6309
|
id: string;
|
|
@@ -6300,6 +6311,7 @@ export declare const ActionTypes: z.ZodObject<{
|
|
|
6300
6311
|
display_name?: string | undefined;
|
|
6301
6312
|
inputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6302
6313
|
outputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6314
|
+
is_trigger?: boolean | undefined;
|
|
6303
6315
|
};
|
|
6304
6316
|
type: "action_type";
|
|
6305
6317
|
}, {
|
|
@@ -6308,6 +6320,7 @@ export declare const ActionTypes: z.ZodObject<{
|
|
|
6308
6320
|
display_name?: string | undefined;
|
|
6309
6321
|
inputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6310
6322
|
outputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6323
|
+
is_trigger?: boolean | undefined;
|
|
6311
6324
|
};
|
|
6312
6325
|
type: "action_type";
|
|
6313
6326
|
}>, "many">;
|
|
@@ -6369,6 +6382,7 @@ export declare const ActionTypes: z.ZodObject<{
|
|
|
6369
6382
|
display_name?: string | undefined;
|
|
6370
6383
|
inputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6371
6384
|
outputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6385
|
+
is_trigger?: boolean | undefined;
|
|
6372
6386
|
};
|
|
6373
6387
|
type: "action_type";
|
|
6374
6388
|
}[];
|
|
@@ -6394,6 +6408,7 @@ export declare const ActionTypes: z.ZodObject<{
|
|
|
6394
6408
|
display_name?: string | undefined;
|
|
6395
6409
|
inputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6396
6410
|
outputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6411
|
+
is_trigger?: boolean | undefined;
|
|
6397
6412
|
};
|
|
6398
6413
|
type: "action_type";
|
|
6399
6414
|
}[];
|
|
@@ -6421,14 +6436,17 @@ export declare const ActionType: z.ZodObject<{
|
|
|
6421
6436
|
display_name: z.ZodOptional<z.ZodString>;
|
|
6422
6437
|
inputs: z.ZodOptional<z.ZodArray<z.ZodEnum<["resource_instance", "value", "attributes"]>, "many">>;
|
|
6423
6438
|
outputs: z.ZodOptional<z.ZodArray<z.ZodEnum<["resource_instance", "value", "attributes"]>, "many">>;
|
|
6439
|
+
is_trigger: z.ZodOptional<z.ZodBoolean>;
|
|
6424
6440
|
}, "strip", z.ZodTypeAny, {
|
|
6425
6441
|
display_name?: string | undefined;
|
|
6426
6442
|
inputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6427
6443
|
outputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6444
|
+
is_trigger?: boolean | undefined;
|
|
6428
6445
|
}, {
|
|
6429
6446
|
display_name?: string | undefined;
|
|
6430
6447
|
inputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6431
6448
|
outputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6449
|
+
is_trigger?: boolean | undefined;
|
|
6432
6450
|
}>;
|
|
6433
6451
|
}, "strip", z.ZodTypeAny, {
|
|
6434
6452
|
id: string;
|
|
@@ -6436,6 +6454,7 @@ export declare const ActionType: z.ZodObject<{
|
|
|
6436
6454
|
display_name?: string | undefined;
|
|
6437
6455
|
inputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6438
6456
|
outputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6457
|
+
is_trigger?: boolean | undefined;
|
|
6439
6458
|
};
|
|
6440
6459
|
type: "action_type";
|
|
6441
6460
|
}, {
|
|
@@ -6444,6 +6463,7 @@ export declare const ActionType: z.ZodObject<{
|
|
|
6444
6463
|
display_name?: string | undefined;
|
|
6445
6464
|
inputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6446
6465
|
outputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6466
|
+
is_trigger?: boolean | undefined;
|
|
6447
6467
|
};
|
|
6448
6468
|
type: "action_type";
|
|
6449
6469
|
}>;
|
|
@@ -6473,6 +6493,7 @@ export declare const ActionType: z.ZodObject<{
|
|
|
6473
6493
|
display_name?: string | undefined;
|
|
6474
6494
|
inputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6475
6495
|
outputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6496
|
+
is_trigger?: boolean | undefined;
|
|
6476
6497
|
};
|
|
6477
6498
|
type: "action_type";
|
|
6478
6499
|
};
|
|
@@ -6490,6 +6511,7 @@ export declare const ActionType: z.ZodObject<{
|
|
|
6490
6511
|
display_name?: string | undefined;
|
|
6491
6512
|
inputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6492
6513
|
outputs?: ("attributes" | "resource_instance" | "value")[] | undefined;
|
|
6514
|
+
is_trigger?: boolean | undefined;
|
|
6493
6515
|
};
|
|
6494
6516
|
type: "action_type";
|
|
6495
6517
|
};
|
package/dist/openapi.zod.js
CHANGED
package/package.json
CHANGED