@vrplatform/api 1.2.33-stage.877 → 1.2.33-stage.880
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/build/main/generated/v1.d.ts +94 -384
- package/build/main/generated/v1.js.map +1 -1
- package/build/module/generated/v1.d.ts +94 -384
- package/build/module/generated/v1.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/v1.ts +94 -384
package/package.json
CHANGED
package/src/generated/v1.ts
CHANGED
|
@@ -2263,6 +2263,94 @@ export interface components {
|
|
|
2263
2263
|
total: number;
|
|
2264
2264
|
values: components["schemas"]["ProfitAndLossValueCell"][];
|
|
2265
2265
|
};
|
|
2266
|
+
/** @description Collection of settings returned by GET routes. Each value is either { id, name, type } or the raw stored value when type=value. */
|
|
2267
|
+
FlowSettingItemsGet: components["schemas"]["FlowSettingItemGet"][];
|
|
2268
|
+
/** @description Setting representation returned from GET routes. value is { id, name, type } for resolved entities or the raw stored value when type=value. */
|
|
2269
|
+
FlowSettingItemGet: {
|
|
2270
|
+
/** Format: uuid */
|
|
2271
|
+
id: string;
|
|
2272
|
+
/** Format: uuid */
|
|
2273
|
+
flowId: string;
|
|
2274
|
+
/** Format: uuid */
|
|
2275
|
+
connectionId: string;
|
|
2276
|
+
settingKey: string;
|
|
2277
|
+
title: string | null;
|
|
2278
|
+
description: string | null;
|
|
2279
|
+
/**
|
|
2280
|
+
* @description Semantic type for mapping/setting entries (entities and primitive kinds).
|
|
2281
|
+
* @enum {string|null}
|
|
2282
|
+
*/
|
|
2283
|
+
type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
|
|
2284
|
+
filter: string | null;
|
|
2285
|
+
value: components["schemas"]["FlowMappingResolvedEntityValue"] | ((string | number | boolean | null) | (string | number | boolean | null)[] | {
|
|
2286
|
+
[key: string]: string | number | boolean | null;
|
|
2287
|
+
});
|
|
2288
|
+
};
|
|
2289
|
+
/** @description Resolved mapping entity summary ({ id, name, type }) returned by GET endpoints. */
|
|
2290
|
+
FlowMappingResolvedEntityValue: {
|
|
2291
|
+
/** Format: uuid */
|
|
2292
|
+
id: string;
|
|
2293
|
+
name: string | null;
|
|
2294
|
+
type: "account" | "bookingChannel" | "contact" | "listing" | "source";
|
|
2295
|
+
};
|
|
2296
|
+
/** @description Collection of settings after mutation with value equal to the entity id. */
|
|
2297
|
+
FlowSettingItemsPost: components["schemas"]["FlowSettingItemPost"][];
|
|
2298
|
+
/** @description Setting representation returned from mutation routes with value=id. */
|
|
2299
|
+
FlowSettingItemPost: {
|
|
2300
|
+
/** Format: uuid */
|
|
2301
|
+
id: string;
|
|
2302
|
+
/** Format: uuid */
|
|
2303
|
+
flowId: string;
|
|
2304
|
+
/** Format: uuid */
|
|
2305
|
+
connectionId: string;
|
|
2306
|
+
settingKey: string;
|
|
2307
|
+
title: string | null;
|
|
2308
|
+
description: string | null;
|
|
2309
|
+
/**
|
|
2310
|
+
* @description Semantic type for mapping/setting entries (entities and primitive kinds).
|
|
2311
|
+
* @enum {string|null}
|
|
2312
|
+
*/
|
|
2313
|
+
type?: "listing" | "account" | "booking_channel" | "contact_vendor" | "contact_owner" | "connection" | "value_number" | "value_percentage" | "value_string" | "value_currency" | "value_date" | null;
|
|
2314
|
+
filter: string | null;
|
|
2315
|
+
value: components["schemas"]["FlowMappingPostValue"];
|
|
2316
|
+
};
|
|
2317
|
+
/**
|
|
2318
|
+
* Format: uuid
|
|
2319
|
+
* @description Identifier of the selected entity, used when creating or updating mappings/settings.
|
|
2320
|
+
*/
|
|
2321
|
+
FlowMappingPostValue: string;
|
|
2322
|
+
/** @description Mapping entry returned from GET routes. value is { id, name, type } for resolved entities or the raw value when type=value. */
|
|
2323
|
+
FlowMappingItemGet: {
|
|
2324
|
+
/** Format: uuid */
|
|
2325
|
+
id: string;
|
|
2326
|
+
/** Format: uuid */
|
|
2327
|
+
flowId: string;
|
|
2328
|
+
/** Format: uuid */
|
|
2329
|
+
connectionId: string;
|
|
2330
|
+
mappingKey: string;
|
|
2331
|
+
/** Format: uuid */
|
|
2332
|
+
sourceId: string;
|
|
2333
|
+
title: string | null;
|
|
2334
|
+
description: string | null;
|
|
2335
|
+
value: components["schemas"]["FlowMappingResolvedEntityValue"] | ((string | number | boolean | null) | (string | number | boolean | null)[] | {
|
|
2336
|
+
[key: string]: string | number | boolean | null;
|
|
2337
|
+
});
|
|
2338
|
+
};
|
|
2339
|
+
/** @description Mapping entry returned from mutation routes with value=id. */
|
|
2340
|
+
FlowMappingItemPost: {
|
|
2341
|
+
/** Format: uuid */
|
|
2342
|
+
id: string;
|
|
2343
|
+
/** Format: uuid */
|
|
2344
|
+
flowId: string;
|
|
2345
|
+
/** Format: uuid */
|
|
2346
|
+
connectionId: string;
|
|
2347
|
+
mappingKey: string;
|
|
2348
|
+
/** Format: uuid */
|
|
2349
|
+
sourceId: string;
|
|
2350
|
+
title: string | null;
|
|
2351
|
+
description: string | null;
|
|
2352
|
+
value: components["schemas"]["FlowMappingPostValue"];
|
|
2353
|
+
};
|
|
2266
2354
|
};
|
|
2267
2355
|
responses: never;
|
|
2268
2356
|
parameters: never;
|
|
@@ -26181,70 +26269,7 @@ export interface operations {
|
|
|
26181
26269
|
description: string | null;
|
|
26182
26270
|
/** @enum {string} */
|
|
26183
26271
|
status: "active" | "inactive";
|
|
26184
|
-
settings:
|
|
26185
|
-
/** Format: uuid */
|
|
26186
|
-
id: string;
|
|
26187
|
-
/** Format: uuid */
|
|
26188
|
-
flowId: string;
|
|
26189
|
-
/** Format: uuid */
|
|
26190
|
-
connectionId: string;
|
|
26191
|
-
settingKey: string;
|
|
26192
|
-
title: string | null;
|
|
26193
|
-
description: string | null;
|
|
26194
|
-
type: string | null;
|
|
26195
|
-
filter: string | null;
|
|
26196
|
-
value: {
|
|
26197
|
-
/** @enum {string} */
|
|
26198
|
-
type: "account";
|
|
26199
|
-
account: {
|
|
26200
|
-
/** Format: uuid */
|
|
26201
|
-
id: string;
|
|
26202
|
-
title?: string | null;
|
|
26203
|
-
type?: string | null;
|
|
26204
|
-
};
|
|
26205
|
-
} | {
|
|
26206
|
-
/** @enum {string} */
|
|
26207
|
-
type: "bookingChannel";
|
|
26208
|
-
bookingChannel: {
|
|
26209
|
-
/** Format: uuid */
|
|
26210
|
-
id: string;
|
|
26211
|
-
uniqueRef?: string | null;
|
|
26212
|
-
icon?: string | null;
|
|
26213
|
-
};
|
|
26214
|
-
} | {
|
|
26215
|
-
/** @enum {string} */
|
|
26216
|
-
type: "contact";
|
|
26217
|
-
contact: {
|
|
26218
|
-
/** Format: uuid */
|
|
26219
|
-
id: string;
|
|
26220
|
-
name?: string | null;
|
|
26221
|
-
email?: string | null;
|
|
26222
|
-
type?: string | null;
|
|
26223
|
-
};
|
|
26224
|
-
} | {
|
|
26225
|
-
/** @enum {string} */
|
|
26226
|
-
type: "listing";
|
|
26227
|
-
listing: {
|
|
26228
|
-
/** Format: uuid */
|
|
26229
|
-
id: string;
|
|
26230
|
-
name?: string | null;
|
|
26231
|
-
title?: string | null;
|
|
26232
|
-
};
|
|
26233
|
-
} | {
|
|
26234
|
-
/** @enum {string} */
|
|
26235
|
-
type: "source";
|
|
26236
|
-
source: {
|
|
26237
|
-
/** Format: uuid */
|
|
26238
|
-
id: string;
|
|
26239
|
-
description?: string | null;
|
|
26240
|
-
code?: string | null;
|
|
26241
|
-
};
|
|
26242
|
-
} | {
|
|
26243
|
-
/** @enum {string} */
|
|
26244
|
-
type: "value";
|
|
26245
|
-
value?: unknown;
|
|
26246
|
-
};
|
|
26247
|
-
}[];
|
|
26272
|
+
settings: components["schemas"]["FlowSettingItemsGet"];
|
|
26248
26273
|
};
|
|
26249
26274
|
};
|
|
26250
26275
|
};
|
|
@@ -26331,70 +26356,7 @@ export interface operations {
|
|
|
26331
26356
|
description: string | null;
|
|
26332
26357
|
/** @enum {string} */
|
|
26333
26358
|
status: "active" | "inactive";
|
|
26334
|
-
settings:
|
|
26335
|
-
/** Format: uuid */
|
|
26336
|
-
id: string;
|
|
26337
|
-
/** Format: uuid */
|
|
26338
|
-
flowId: string;
|
|
26339
|
-
/** Format: uuid */
|
|
26340
|
-
connectionId: string;
|
|
26341
|
-
settingKey: string;
|
|
26342
|
-
title: string | null;
|
|
26343
|
-
description: string | null;
|
|
26344
|
-
type: string | null;
|
|
26345
|
-
filter: string | null;
|
|
26346
|
-
value: {
|
|
26347
|
-
/** @enum {string} */
|
|
26348
|
-
type: "account";
|
|
26349
|
-
account: {
|
|
26350
|
-
/** Format: uuid */
|
|
26351
|
-
id: string;
|
|
26352
|
-
title?: string | null;
|
|
26353
|
-
type?: string | null;
|
|
26354
|
-
};
|
|
26355
|
-
} | {
|
|
26356
|
-
/** @enum {string} */
|
|
26357
|
-
type: "bookingChannel";
|
|
26358
|
-
bookingChannel: {
|
|
26359
|
-
/** Format: uuid */
|
|
26360
|
-
id: string;
|
|
26361
|
-
uniqueRef?: string | null;
|
|
26362
|
-
icon?: string | null;
|
|
26363
|
-
};
|
|
26364
|
-
} | {
|
|
26365
|
-
/** @enum {string} */
|
|
26366
|
-
type: "contact";
|
|
26367
|
-
contact: {
|
|
26368
|
-
/** Format: uuid */
|
|
26369
|
-
id: string;
|
|
26370
|
-
name?: string | null;
|
|
26371
|
-
email?: string | null;
|
|
26372
|
-
type?: string | null;
|
|
26373
|
-
};
|
|
26374
|
-
} | {
|
|
26375
|
-
/** @enum {string} */
|
|
26376
|
-
type: "listing";
|
|
26377
|
-
listing: {
|
|
26378
|
-
/** Format: uuid */
|
|
26379
|
-
id: string;
|
|
26380
|
-
name?: string | null;
|
|
26381
|
-
title?: string | null;
|
|
26382
|
-
};
|
|
26383
|
-
} | {
|
|
26384
|
-
/** @enum {string} */
|
|
26385
|
-
type: "source";
|
|
26386
|
-
source: {
|
|
26387
|
-
/** Format: uuid */
|
|
26388
|
-
id: string;
|
|
26389
|
-
description?: string | null;
|
|
26390
|
-
code?: string | null;
|
|
26391
|
-
};
|
|
26392
|
-
} | {
|
|
26393
|
-
/** @enum {string} */
|
|
26394
|
-
type: "value";
|
|
26395
|
-
value?: unknown;
|
|
26396
|
-
};
|
|
26397
|
-
}[];
|
|
26359
|
+
settings: components["schemas"]["FlowSettingItemsGet"];
|
|
26398
26360
|
};
|
|
26399
26361
|
};
|
|
26400
26362
|
};
|
|
@@ -26542,70 +26504,7 @@ export interface operations {
|
|
|
26542
26504
|
};
|
|
26543
26505
|
content: {
|
|
26544
26506
|
"application/json": {
|
|
26545
|
-
data:
|
|
26546
|
-
/** Format: uuid */
|
|
26547
|
-
id: string;
|
|
26548
|
-
/** Format: uuid */
|
|
26549
|
-
flowId: string;
|
|
26550
|
-
/** Format: uuid */
|
|
26551
|
-
connectionId: string;
|
|
26552
|
-
settingKey: string;
|
|
26553
|
-
title: string | null;
|
|
26554
|
-
description: string | null;
|
|
26555
|
-
type: string | null;
|
|
26556
|
-
filter: string | null;
|
|
26557
|
-
value: {
|
|
26558
|
-
/** @enum {string} */
|
|
26559
|
-
type: "account";
|
|
26560
|
-
account: {
|
|
26561
|
-
/** Format: uuid */
|
|
26562
|
-
id: string;
|
|
26563
|
-
title?: string | null;
|
|
26564
|
-
type?: string | null;
|
|
26565
|
-
};
|
|
26566
|
-
} | {
|
|
26567
|
-
/** @enum {string} */
|
|
26568
|
-
type: "bookingChannel";
|
|
26569
|
-
bookingChannel: {
|
|
26570
|
-
/** Format: uuid */
|
|
26571
|
-
id: string;
|
|
26572
|
-
uniqueRef?: string | null;
|
|
26573
|
-
icon?: string | null;
|
|
26574
|
-
};
|
|
26575
|
-
} | {
|
|
26576
|
-
/** @enum {string} */
|
|
26577
|
-
type: "contact";
|
|
26578
|
-
contact: {
|
|
26579
|
-
/** Format: uuid */
|
|
26580
|
-
id: string;
|
|
26581
|
-
name?: string | null;
|
|
26582
|
-
email?: string | null;
|
|
26583
|
-
type?: string | null;
|
|
26584
|
-
};
|
|
26585
|
-
} | {
|
|
26586
|
-
/** @enum {string} */
|
|
26587
|
-
type: "listing";
|
|
26588
|
-
listing: {
|
|
26589
|
-
/** Format: uuid */
|
|
26590
|
-
id: string;
|
|
26591
|
-
name?: string | null;
|
|
26592
|
-
title?: string | null;
|
|
26593
|
-
};
|
|
26594
|
-
} | {
|
|
26595
|
-
/** @enum {string} */
|
|
26596
|
-
type: "source";
|
|
26597
|
-
source: {
|
|
26598
|
-
/** Format: uuid */
|
|
26599
|
-
id: string;
|
|
26600
|
-
description?: string | null;
|
|
26601
|
-
code?: string | null;
|
|
26602
|
-
};
|
|
26603
|
-
} | {
|
|
26604
|
-
/** @enum {string} */
|
|
26605
|
-
type: "value";
|
|
26606
|
-
value?: unknown;
|
|
26607
|
-
};
|
|
26608
|
-
}[];
|
|
26507
|
+
data: components["schemas"]["FlowSettingItemGet"][];
|
|
26609
26508
|
pagination: {
|
|
26610
26509
|
/** @default 100 */
|
|
26611
26510
|
limit: number;
|
|
@@ -26792,70 +26691,7 @@ export interface operations {
|
|
|
26792
26691
|
description: string | null;
|
|
26793
26692
|
/** @enum {string} */
|
|
26794
26693
|
status: "active" | "inactive";
|
|
26795
|
-
settings:
|
|
26796
|
-
/** Format: uuid */
|
|
26797
|
-
id: string;
|
|
26798
|
-
/** Format: uuid */
|
|
26799
|
-
flowId: string;
|
|
26800
|
-
/** Format: uuid */
|
|
26801
|
-
connectionId: string;
|
|
26802
|
-
settingKey: string;
|
|
26803
|
-
title: string | null;
|
|
26804
|
-
description: string | null;
|
|
26805
|
-
type: string | null;
|
|
26806
|
-
filter: string | null;
|
|
26807
|
-
value: {
|
|
26808
|
-
/** @enum {string} */
|
|
26809
|
-
type: "account";
|
|
26810
|
-
account: {
|
|
26811
|
-
/** Format: uuid */
|
|
26812
|
-
id: string;
|
|
26813
|
-
title?: string | null;
|
|
26814
|
-
type?: string | null;
|
|
26815
|
-
};
|
|
26816
|
-
} | {
|
|
26817
|
-
/** @enum {string} */
|
|
26818
|
-
type: "bookingChannel";
|
|
26819
|
-
bookingChannel: {
|
|
26820
|
-
/** Format: uuid */
|
|
26821
|
-
id: string;
|
|
26822
|
-
uniqueRef?: string | null;
|
|
26823
|
-
icon?: string | null;
|
|
26824
|
-
};
|
|
26825
|
-
} | {
|
|
26826
|
-
/** @enum {string} */
|
|
26827
|
-
type: "contact";
|
|
26828
|
-
contact: {
|
|
26829
|
-
/** Format: uuid */
|
|
26830
|
-
id: string;
|
|
26831
|
-
name?: string | null;
|
|
26832
|
-
email?: string | null;
|
|
26833
|
-
type?: string | null;
|
|
26834
|
-
};
|
|
26835
|
-
} | {
|
|
26836
|
-
/** @enum {string} */
|
|
26837
|
-
type: "listing";
|
|
26838
|
-
listing: {
|
|
26839
|
-
/** Format: uuid */
|
|
26840
|
-
id: string;
|
|
26841
|
-
name?: string | null;
|
|
26842
|
-
title?: string | null;
|
|
26843
|
-
};
|
|
26844
|
-
} | {
|
|
26845
|
-
/** @enum {string} */
|
|
26846
|
-
type: "source";
|
|
26847
|
-
source: {
|
|
26848
|
-
/** Format: uuid */
|
|
26849
|
-
id: string;
|
|
26850
|
-
description?: string | null;
|
|
26851
|
-
code?: string | null;
|
|
26852
|
-
};
|
|
26853
|
-
} | {
|
|
26854
|
-
/** @enum {string} */
|
|
26855
|
-
type: "value";
|
|
26856
|
-
value?: unknown;
|
|
26857
|
-
};
|
|
26858
|
-
}[];
|
|
26694
|
+
settings: components["schemas"]["FlowSettingItemsPost"];
|
|
26859
26695
|
};
|
|
26860
26696
|
};
|
|
26861
26697
|
};
|
|
@@ -26922,70 +26758,7 @@ export interface operations {
|
|
|
26922
26758
|
};
|
|
26923
26759
|
content: {
|
|
26924
26760
|
"application/json": {
|
|
26925
|
-
data:
|
|
26926
|
-
/** Format: uuid */
|
|
26927
|
-
id: string;
|
|
26928
|
-
/** Format: uuid */
|
|
26929
|
-
flowId: string;
|
|
26930
|
-
/** Format: uuid */
|
|
26931
|
-
connectionId: string;
|
|
26932
|
-
mappingKey: string;
|
|
26933
|
-
/** Format: uuid */
|
|
26934
|
-
sourceId: string;
|
|
26935
|
-
title: string | null;
|
|
26936
|
-
description: string | null;
|
|
26937
|
-
value: {
|
|
26938
|
-
/** @enum {string} */
|
|
26939
|
-
type: "account";
|
|
26940
|
-
account: {
|
|
26941
|
-
/** Format: uuid */
|
|
26942
|
-
id: string;
|
|
26943
|
-
title?: string | null;
|
|
26944
|
-
type?: string | null;
|
|
26945
|
-
};
|
|
26946
|
-
} | {
|
|
26947
|
-
/** @enum {string} */
|
|
26948
|
-
type: "bookingChannel";
|
|
26949
|
-
bookingChannel: {
|
|
26950
|
-
/** Format: uuid */
|
|
26951
|
-
id: string;
|
|
26952
|
-
uniqueRef?: string | null;
|
|
26953
|
-
icon?: string | null;
|
|
26954
|
-
};
|
|
26955
|
-
} | {
|
|
26956
|
-
/** @enum {string} */
|
|
26957
|
-
type: "contact";
|
|
26958
|
-
contact: {
|
|
26959
|
-
/** Format: uuid */
|
|
26960
|
-
id: string;
|
|
26961
|
-
name?: string | null;
|
|
26962
|
-
email?: string | null;
|
|
26963
|
-
type?: string | null;
|
|
26964
|
-
};
|
|
26965
|
-
} | {
|
|
26966
|
-
/** @enum {string} */
|
|
26967
|
-
type: "listing";
|
|
26968
|
-
listing: {
|
|
26969
|
-
/** Format: uuid */
|
|
26970
|
-
id: string;
|
|
26971
|
-
name?: string | null;
|
|
26972
|
-
title?: string | null;
|
|
26973
|
-
};
|
|
26974
|
-
} | {
|
|
26975
|
-
/** @enum {string} */
|
|
26976
|
-
type: "source";
|
|
26977
|
-
source: {
|
|
26978
|
-
/** Format: uuid */
|
|
26979
|
-
id: string;
|
|
26980
|
-
description?: string | null;
|
|
26981
|
-
code?: string | null;
|
|
26982
|
-
};
|
|
26983
|
-
} | {
|
|
26984
|
-
/** @enum {string} */
|
|
26985
|
-
type: "value";
|
|
26986
|
-
value?: unknown;
|
|
26987
|
-
};
|
|
26988
|
-
}[];
|
|
26761
|
+
data: components["schemas"]["FlowMappingItemGet"][];
|
|
26989
26762
|
pagination: {
|
|
26990
26763
|
/** @default 100 */
|
|
26991
26764
|
limit: number;
|
|
@@ -27079,70 +26852,7 @@ export interface operations {
|
|
|
27079
26852
|
};
|
|
27080
26853
|
content: {
|
|
27081
26854
|
"application/json": {
|
|
27082
|
-
data:
|
|
27083
|
-
/** Format: uuid */
|
|
27084
|
-
id: string;
|
|
27085
|
-
/** Format: uuid */
|
|
27086
|
-
flowId: string;
|
|
27087
|
-
/** Format: uuid */
|
|
27088
|
-
connectionId: string;
|
|
27089
|
-
mappingKey: string;
|
|
27090
|
-
/** Format: uuid */
|
|
27091
|
-
sourceId: string;
|
|
27092
|
-
title: string | null;
|
|
27093
|
-
description: string | null;
|
|
27094
|
-
value: {
|
|
27095
|
-
/** @enum {string} */
|
|
27096
|
-
type: "account";
|
|
27097
|
-
account: {
|
|
27098
|
-
/** Format: uuid */
|
|
27099
|
-
id: string;
|
|
27100
|
-
title?: string | null;
|
|
27101
|
-
type?: string | null;
|
|
27102
|
-
};
|
|
27103
|
-
} | {
|
|
27104
|
-
/** @enum {string} */
|
|
27105
|
-
type: "bookingChannel";
|
|
27106
|
-
bookingChannel: {
|
|
27107
|
-
/** Format: uuid */
|
|
27108
|
-
id: string;
|
|
27109
|
-
uniqueRef?: string | null;
|
|
27110
|
-
icon?: string | null;
|
|
27111
|
-
};
|
|
27112
|
-
} | {
|
|
27113
|
-
/** @enum {string} */
|
|
27114
|
-
type: "contact";
|
|
27115
|
-
contact: {
|
|
27116
|
-
/** Format: uuid */
|
|
27117
|
-
id: string;
|
|
27118
|
-
name?: string | null;
|
|
27119
|
-
email?: string | null;
|
|
27120
|
-
type?: string | null;
|
|
27121
|
-
};
|
|
27122
|
-
} | {
|
|
27123
|
-
/** @enum {string} */
|
|
27124
|
-
type: "listing";
|
|
27125
|
-
listing: {
|
|
27126
|
-
/** Format: uuid */
|
|
27127
|
-
id: string;
|
|
27128
|
-
name?: string | null;
|
|
27129
|
-
title?: string | null;
|
|
27130
|
-
};
|
|
27131
|
-
} | {
|
|
27132
|
-
/** @enum {string} */
|
|
27133
|
-
type: "source";
|
|
27134
|
-
source: {
|
|
27135
|
-
/** Format: uuid */
|
|
27136
|
-
id: string;
|
|
27137
|
-
description?: string | null;
|
|
27138
|
-
code?: string | null;
|
|
27139
|
-
};
|
|
27140
|
-
} | {
|
|
27141
|
-
/** @enum {string} */
|
|
27142
|
-
type: "value";
|
|
27143
|
-
value?: unknown;
|
|
27144
|
-
};
|
|
27145
|
-
}[];
|
|
26855
|
+
data: components["schemas"]["FlowMappingItemPost"][];
|
|
27146
26856
|
pagination: {
|
|
27147
26857
|
/** @default 100 */
|
|
27148
26858
|
limit: number;
|