system-initiative-api-client 0.0.1

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.
@@ -0,0 +1,4462 @@
1
+ /**
2
+ * System Initiative API
3
+ * The API Server for interacting with a System Initiative workspace
4
+ *
5
+ * The version of the OpenAPI document: 1.0.0
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { Configuration } from './configuration';
13
+ import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
14
+ import type { RequestArgs } from './base';
15
+ import { BaseAPI } from './base';
16
+ /**
17
+ * @type ActionReference
18
+ * Reference to a management function by either name or ID. This allows clients to use the more human-friendly name approach or the more precise ID approach when working with actions.
19
+ * @export
20
+ */
21
+ export type ActionReference = ActionReferenceOneOf | ActionReferenceOneOf1;
22
+ /**
23
+ *
24
+ * @export
25
+ * @interface ActionReferenceOneOf
26
+ */
27
+ export interface ActionReferenceOneOf {
28
+ /**
29
+ *
30
+ * @type {string}
31
+ * @memberof ActionReferenceOneOf
32
+ */
33
+ 'function': string;
34
+ }
35
+ /**
36
+ *
37
+ * @export
38
+ * @interface ActionReferenceOneOf1
39
+ */
40
+ export interface ActionReferenceOneOf1 {
41
+ /**
42
+ *
43
+ * @type {string}
44
+ * @memberof ActionReferenceOneOf1
45
+ */
46
+ 'actionPrototypeId': string;
47
+ }
48
+ /**
49
+ *
50
+ * @export
51
+ * @interface ActionV1RequestPath
52
+ */
53
+ export interface ActionV1RequestPath {
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof ActionV1RequestPath
58
+ */
59
+ 'action_id': string;
60
+ }
61
+ /**
62
+ *
63
+ * @export
64
+ * @interface ActionViewV1
65
+ */
66
+ export interface ActionViewV1 {
67
+ /**
68
+ *
69
+ * @type {string}
70
+ * @memberof ActionViewV1
71
+ */
72
+ 'componentId': string;
73
+ /**
74
+ *
75
+ * @type {string}
76
+ * @memberof ActionViewV1
77
+ */
78
+ 'description': string;
79
+ /**
80
+ *
81
+ * @type {string}
82
+ * @memberof ActionViewV1
83
+ */
84
+ 'funcRunId': string;
85
+ /**
86
+ *
87
+ * @type {string}
88
+ * @memberof ActionViewV1
89
+ */
90
+ 'id': string;
91
+ /**
92
+ *
93
+ * @type {string}
94
+ * @memberof ActionViewV1
95
+ */
96
+ 'kind': string;
97
+ /**
98
+ *
99
+ * @type {string}
100
+ * @memberof ActionViewV1
101
+ */
102
+ 'name': string;
103
+ /**
104
+ *
105
+ * @type {string}
106
+ * @memberof ActionViewV1
107
+ */
108
+ 'originatingChangeSetId': string;
109
+ /**
110
+ *
111
+ * @type {string}
112
+ * @memberof ActionViewV1
113
+ */
114
+ 'prototypeId': string;
115
+ /**
116
+ *
117
+ * @type {string}
118
+ * @memberof ActionViewV1
119
+ */
120
+ 'state': string;
121
+ }
122
+ /**
123
+ *
124
+ * @export
125
+ * @interface AddActionV1Request
126
+ */
127
+ export interface AddActionV1Request {
128
+ /**
129
+ *
130
+ * @type {ActionReference}
131
+ * @memberof AddActionV1Request
132
+ */
133
+ 'action': ActionReference;
134
+ }
135
+ /**
136
+ *
137
+ * @export
138
+ * @interface AddActionV1Response
139
+ */
140
+ export interface AddActionV1Response {
141
+ /**
142
+ *
143
+ * @type {boolean}
144
+ * @memberof AddActionV1Response
145
+ */
146
+ 'success': boolean;
147
+ }
148
+ /**
149
+ * Standard error response format for v1 API
150
+ * @export
151
+ * @interface ApiError
152
+ */
153
+ export interface ApiError {
154
+ /**
155
+ *
156
+ * @type {number}
157
+ * @memberof ApiError
158
+ */
159
+ 'code'?: number | null;
160
+ /**
161
+ *
162
+ * @type {string}
163
+ * @memberof ApiError
164
+ */
165
+ 'message': string;
166
+ /**
167
+ *
168
+ * @type {number}
169
+ * @memberof ApiError
170
+ */
171
+ 'statusCode': number;
172
+ }
173
+ /**
174
+ * Standard success response format for v1 API
175
+ * @export
176
+ * @interface ApiSuccessString
177
+ */
178
+ export interface ApiSuccessString {
179
+ /**
180
+ *
181
+ * @type {string}
182
+ * @memberof ApiSuccessString
183
+ */
184
+ 'data': string;
185
+ }
186
+ /**
187
+ *
188
+ * @export
189
+ * @interface CancelActionV1Response
190
+ */
191
+ export interface CancelActionV1Response {
192
+ /**
193
+ *
194
+ * @type {boolean}
195
+ * @memberof CancelActionV1Response
196
+ */
197
+ 'success': boolean;
198
+ }
199
+ /**
200
+ *
201
+ * @export
202
+ * @interface ChangeSetViewV1
203
+ */
204
+ export interface ChangeSetViewV1 {
205
+ /**
206
+ *
207
+ * @type {string}
208
+ * @memberof ChangeSetViewV1
209
+ */
210
+ 'id': string;
211
+ /**
212
+ *
213
+ * @type {boolean}
214
+ * @memberof ChangeSetViewV1
215
+ */
216
+ 'isHead': boolean;
217
+ /**
218
+ *
219
+ * @type {string}
220
+ * @memberof ChangeSetViewV1
221
+ */
222
+ 'name': string;
223
+ /**
224
+ *
225
+ * @type {string}
226
+ * @memberof ChangeSetViewV1
227
+ */
228
+ 'status': string;
229
+ }
230
+ /**
231
+ * @type ComponentPropKey
232
+ * @export
233
+ */
234
+ export type ComponentPropKey = string;
235
+ /**
236
+ *
237
+ * @export
238
+ * @interface ComponentPropViewV1
239
+ */
240
+ export interface ComponentPropViewV1 {
241
+ /**
242
+ *
243
+ * @type {string}
244
+ * @memberof ComponentPropViewV1
245
+ */
246
+ 'id': string;
247
+ /**
248
+ *
249
+ * @type {string}
250
+ * @memberof ComponentPropViewV1
251
+ */
252
+ 'path': string;
253
+ /**
254
+ *
255
+ * @type {string}
256
+ * @memberof ComponentPropViewV1
257
+ */
258
+ 'propId': string;
259
+ /**
260
+ *
261
+ * @type {object}
262
+ * @memberof ComponentPropViewV1
263
+ */
264
+ 'value': object;
265
+ }
266
+ /**
267
+ * @type ComponentReference
268
+ * @export
269
+ */
270
+ export type ComponentReference = ComponentReferenceOneOf | ComponentReferenceOneOf1;
271
+ /**
272
+ *
273
+ * @export
274
+ * @interface ComponentReferenceOneOf
275
+ */
276
+ export interface ComponentReferenceOneOf {
277
+ /**
278
+ *
279
+ * @type {string}
280
+ * @memberof ComponentReferenceOneOf
281
+ */
282
+ 'component': string;
283
+ }
284
+ /**
285
+ *
286
+ * @export
287
+ * @interface ComponentReferenceOneOf1
288
+ */
289
+ export interface ComponentReferenceOneOf1 {
290
+ /**
291
+ *
292
+ * @type {string}
293
+ * @memberof ComponentReferenceOneOf1
294
+ */
295
+ 'componentId': string;
296
+ }
297
+ /**
298
+ *
299
+ * @export
300
+ * @interface ComponentV1RequestPath
301
+ */
302
+ export interface ComponentV1RequestPath {
303
+ /**
304
+ *
305
+ * @type {string}
306
+ * @memberof ComponentV1RequestPath
307
+ */
308
+ 'component_id': string;
309
+ }
310
+ /**
311
+ *
312
+ * @export
313
+ * @interface ComponentViewV1
314
+ */
315
+ export interface ComponentViewV1 {
316
+ /**
317
+ *
318
+ * @type {boolean}
319
+ * @memberof ComponentViewV1
320
+ */
321
+ 'canBeUpgraded': boolean;
322
+ /**
323
+ *
324
+ * @type {Array<ConnectionViewV1>}
325
+ * @memberof ComponentViewV1
326
+ */
327
+ 'connections': Array<ConnectionViewV1>;
328
+ /**
329
+ *
330
+ * @type {Array<ComponentPropViewV1>}
331
+ * @memberof ComponentViewV1
332
+ */
333
+ 'domainProps': Array<ComponentPropViewV1>;
334
+ /**
335
+ *
336
+ * @type {string}
337
+ * @memberof ComponentViewV1
338
+ */
339
+ 'id': string;
340
+ /**
341
+ *
342
+ * @type {string}
343
+ * @memberof ComponentViewV1
344
+ */
345
+ 'name': string;
346
+ /**
347
+ *
348
+ * @type {string}
349
+ * @memberof ComponentViewV1
350
+ */
351
+ 'resourceId': string;
352
+ /**
353
+ *
354
+ * @type {Array<ComponentPropViewV1>}
355
+ * @memberof ComponentViewV1
356
+ */
357
+ 'resourceProps': Array<ComponentPropViewV1>;
358
+ /**
359
+ *
360
+ * @type {string}
361
+ * @memberof ComponentViewV1
362
+ */
363
+ 'schemaId': string;
364
+ /**
365
+ *
366
+ * @type {string}
367
+ * @memberof ComponentViewV1
368
+ */
369
+ 'schemaVariantId': string;
370
+ /**
371
+ *
372
+ * @type {Array<SocketViewV1>}
373
+ * @memberof ComponentViewV1
374
+ */
375
+ 'sockets': Array<SocketViewV1>;
376
+ /**
377
+ *
378
+ * @type {boolean}
379
+ * @memberof ComponentViewV1
380
+ */
381
+ 'toDelete': boolean;
382
+ /**
383
+ *
384
+ * @type {Array<ViewV1>}
385
+ * @memberof ComponentViewV1
386
+ */
387
+ 'views': Array<ViewV1>;
388
+ }
389
+ /**
390
+ * @type Connection
391
+ * @export
392
+ */
393
+ export type Connection = ConnectionOneOf | ConnectionOneOf1;
394
+ /**
395
+ *
396
+ * @export
397
+ * @interface ConnectionDetails
398
+ */
399
+ export interface ConnectionDetails {
400
+ /**
401
+ *
402
+ * @type {Array<Connection>}
403
+ * @memberof ConnectionDetails
404
+ */
405
+ 'add'?: Array<Connection>;
406
+ /**
407
+ *
408
+ * @type {Array<Connection>}
409
+ * @memberof ConnectionDetails
410
+ */
411
+ 'remove'?: Array<Connection>;
412
+ }
413
+ /**
414
+ *
415
+ * @export
416
+ * @interface ConnectionOneOf
417
+ */
418
+ export interface ConnectionOneOf {
419
+ /**
420
+ *
421
+ * @type {ConnectionPoint}
422
+ * @memberof ConnectionOneOf
423
+ */
424
+ 'from': ConnectionPoint;
425
+ /**
426
+ *
427
+ * @type {string}
428
+ * @memberof ConnectionOneOf
429
+ */
430
+ 'to': string;
431
+ }
432
+ /**
433
+ *
434
+ * @export
435
+ * @interface ConnectionOneOf1
436
+ */
437
+ export interface ConnectionOneOf1 {
438
+ /**
439
+ *
440
+ * @type {string}
441
+ * @memberof ConnectionOneOf1
442
+ */
443
+ 'from': string;
444
+ /**
445
+ *
446
+ * @type {ConnectionPoint}
447
+ * @memberof ConnectionOneOf1
448
+ */
449
+ 'to': ConnectionPoint;
450
+ }
451
+ /**
452
+ *
453
+ * @export
454
+ * @interface ConnectionPoint
455
+ */
456
+ export interface ConnectionPoint {
457
+ /**
458
+ *
459
+ * @type {string}
460
+ * @memberof ConnectionPoint
461
+ */
462
+ 'component': string;
463
+ /**
464
+ *
465
+ * @type {string}
466
+ * @memberof ConnectionPoint
467
+ */
468
+ 'componentId': string;
469
+ /**
470
+ *
471
+ * @type {string}
472
+ * @memberof ConnectionPoint
473
+ */
474
+ 'socketName': string;
475
+ }
476
+ /**
477
+ * @type ConnectionViewV1
478
+ * @export
479
+ */
480
+ export type ConnectionViewV1 = ConnectionViewV1OneOf | ConnectionViewV1OneOf1 | ConnectionViewV1OneOf2 | ConnectionViewV1OneOf3;
481
+ /**
482
+ *
483
+ * @export
484
+ * @interface ConnectionViewV1OneOf
485
+ */
486
+ export interface ConnectionViewV1OneOf {
487
+ /**
488
+ *
489
+ * @type {IncomingConnectionViewV1}
490
+ * @memberof ConnectionViewV1OneOf
491
+ */
492
+ 'incoming': IncomingConnectionViewV1;
493
+ }
494
+ /**
495
+ *
496
+ * @export
497
+ * @interface ConnectionViewV1OneOf1
498
+ */
499
+ export interface ConnectionViewV1OneOf1 {
500
+ /**
501
+ *
502
+ * @type {OutgoingConnectionViewV1}
503
+ * @memberof ConnectionViewV1OneOf1
504
+ */
505
+ 'outgoing': OutgoingConnectionViewV1;
506
+ }
507
+ /**
508
+ *
509
+ * @export
510
+ * @interface ConnectionViewV1OneOf2
511
+ */
512
+ export interface ConnectionViewV1OneOf2 {
513
+ /**
514
+ *
515
+ * @type {ManagingConnectionViewV1}
516
+ * @memberof ConnectionViewV1OneOf2
517
+ */
518
+ 'managing': ManagingConnectionViewV1;
519
+ }
520
+ /**
521
+ *
522
+ * @export
523
+ * @interface ConnectionViewV1OneOf3
524
+ */
525
+ export interface ConnectionViewV1OneOf3 {
526
+ /**
527
+ *
528
+ * @type {ManagedByConnectionViewV1}
529
+ * @memberof ConnectionViewV1OneOf3
530
+ */
531
+ 'managedBy': ManagedByConnectionViewV1;
532
+ }
533
+ /**
534
+ *
535
+ * @export
536
+ * @interface CreateChangeSetV1Request
537
+ */
538
+ export interface CreateChangeSetV1Request {
539
+ /**
540
+ *
541
+ * @type {string}
542
+ * @memberof CreateChangeSetV1Request
543
+ */
544
+ 'changeSetName': string;
545
+ }
546
+ /**
547
+ *
548
+ * @export
549
+ * @interface CreateChangeSetV1Response
550
+ */
551
+ export interface CreateChangeSetV1Response {
552
+ /**
553
+ *
554
+ * @type {ChangeSetViewV1}
555
+ * @memberof CreateChangeSetV1Response
556
+ */
557
+ 'changeSet': ChangeSetViewV1;
558
+ }
559
+ /**
560
+ *
561
+ * @export
562
+ * @interface CreateComponentV1Request
563
+ */
564
+ export interface CreateComponentV1Request {
565
+ /**
566
+ *
567
+ * @type {Array<Connection>}
568
+ * @memberof CreateComponentV1Request
569
+ */
570
+ 'connections'?: Array<Connection>;
571
+ /**
572
+ *
573
+ * @type {{ [key: string]: any; }}
574
+ * @memberof CreateComponentV1Request
575
+ */
576
+ 'domain'?: {
577
+ [key: string]: any;
578
+ };
579
+ /**
580
+ *
581
+ * @type {string}
582
+ * @memberof CreateComponentV1Request
583
+ */
584
+ 'name': string;
585
+ /**
586
+ *
587
+ * @type {string}
588
+ * @memberof CreateComponentV1Request
589
+ */
590
+ 'resourceId'?: string | null;
591
+ /**
592
+ *
593
+ * @type {string}
594
+ * @memberof CreateComponentV1Request
595
+ */
596
+ 'schemaName': string;
597
+ /**
598
+ *
599
+ * @type {{ [key: string]: any; }}
600
+ * @memberof CreateComponentV1Request
601
+ */
602
+ 'secrets'?: {
603
+ [key: string]: any;
604
+ };
605
+ /**
606
+ *
607
+ * @type {string}
608
+ * @memberof CreateComponentV1Request
609
+ */
610
+ 'viewName'?: string | null;
611
+ }
612
+ /**
613
+ *
614
+ * @export
615
+ * @interface CreateComponentV1Response
616
+ */
617
+ export interface CreateComponentV1Response {
618
+ /**
619
+ *
620
+ * @type {ComponentViewV1}
621
+ * @memberof CreateComponentV1Response
622
+ */
623
+ 'component': ComponentViewV1;
624
+ }
625
+ /**
626
+ *
627
+ * @export
628
+ * @interface CreateSecretV1Request
629
+ */
630
+ export interface CreateSecretV1Request {
631
+ /**
632
+ *
633
+ * @type {string}
634
+ * @memberof CreateSecretV1Request
635
+ */
636
+ 'definitionName': string;
637
+ /**
638
+ *
639
+ * @type {string}
640
+ * @memberof CreateSecretV1Request
641
+ */
642
+ 'description': string;
643
+ /**
644
+ *
645
+ * @type {string}
646
+ * @memberof CreateSecretV1Request
647
+ */
648
+ 'name': string;
649
+ /**
650
+ *
651
+ * @type {{ [key: string]: string; }}
652
+ * @memberof CreateSecretV1Request
653
+ */
654
+ 'rawData'?: {
655
+ [key: string]: string;
656
+ };
657
+ }
658
+ /**
659
+ *
660
+ * @export
661
+ * @interface CreateSecretV1Response
662
+ */
663
+ export interface CreateSecretV1Response {
664
+ /**
665
+ *
666
+ * @type {SecretV1}
667
+ * @memberof CreateSecretV1Response
668
+ */
669
+ 'secret': SecretV1;
670
+ }
671
+ /**
672
+ *
673
+ * @export
674
+ * @interface DeleteChangeSetV1Response
675
+ */
676
+ export interface DeleteChangeSetV1Response {
677
+ /**
678
+ *
679
+ * @type {boolean}
680
+ * @memberof DeleteChangeSetV1Response
681
+ */
682
+ 'success': boolean;
683
+ }
684
+ /**
685
+ *
686
+ * @export
687
+ * @interface DeleteComponentV1Response
688
+ */
689
+ export interface DeleteComponentV1Response {
690
+ /**
691
+ *
692
+ * @type {string}
693
+ * @memberof DeleteComponentV1Response
694
+ */
695
+ 'status': string;
696
+ }
697
+ /**
698
+ *
699
+ * @export
700
+ * @interface DeleteSecretV1Response
701
+ */
702
+ export interface DeleteSecretV1Response {
703
+ /**
704
+ *
705
+ * @type {boolean}
706
+ * @memberof DeleteSecretV1Response
707
+ */
708
+ 'success': boolean;
709
+ }
710
+ /**
711
+ *
712
+ * @export
713
+ * @interface ErrorDetail
714
+ */
715
+ export interface ErrorDetail {
716
+ /**
717
+ *
718
+ * @type {number}
719
+ * @memberof ErrorDetail
720
+ */
721
+ 'code': number;
722
+ /**
723
+ *
724
+ * @type {string}
725
+ * @memberof ErrorDetail
726
+ */
727
+ 'message': string;
728
+ /**
729
+ *
730
+ * @type {number}
731
+ * @memberof ErrorDetail
732
+ */
733
+ 'status_code': number;
734
+ }
735
+ /**
736
+ *
737
+ * @export
738
+ * @interface ErrorResponse
739
+ */
740
+ export interface ErrorResponse {
741
+ /**
742
+ *
743
+ * @type {ErrorDetail}
744
+ * @memberof ErrorResponse
745
+ */
746
+ 'error': ErrorDetail;
747
+ }
748
+ /**
749
+ *
750
+ * @export
751
+ * @interface ExecuteManagementFunctionV1Request
752
+ */
753
+ export interface ExecuteManagementFunctionV1Request {
754
+ /**
755
+ *
756
+ * @type {ManagementFunctionReference}
757
+ * @memberof ExecuteManagementFunctionV1Request
758
+ */
759
+ 'managementFunction': ManagementFunctionReference;
760
+ /**
761
+ *
762
+ * @type {string}
763
+ * @memberof ExecuteManagementFunctionV1Request
764
+ */
765
+ 'viewName'?: string | null;
766
+ }
767
+ /**
768
+ *
769
+ * @export
770
+ * @interface ExecuteManagementFunctionV1Response
771
+ */
772
+ export interface ExecuteManagementFunctionV1Response {
773
+ /**
774
+ *
775
+ * @type {string}
776
+ * @memberof ExecuteManagementFunctionV1Response
777
+ */
778
+ 'funcRunId': string;
779
+ }
780
+ /**
781
+ *
782
+ * @export
783
+ * @interface FindComponentV1Params
784
+ */
785
+ export interface FindComponentV1Params {
786
+ /**
787
+ *
788
+ * @type {string}
789
+ * @memberof FindComponentV1Params
790
+ */
791
+ 'component'?: string | null;
792
+ /**
793
+ *
794
+ * @type {string}
795
+ * @memberof FindComponentV1Params
796
+ */
797
+ 'componentId': string;
798
+ }
799
+ /**
800
+ *
801
+ * @export
802
+ * @interface FindSchemaV1Params
803
+ */
804
+ export interface FindSchemaV1Params {
805
+ /**
806
+ *
807
+ * @type {string}
808
+ * @memberof FindSchemaV1Params
809
+ */
810
+ 'schema'?: string | null;
811
+ /**
812
+ *
813
+ * @type {string}
814
+ * @memberof FindSchemaV1Params
815
+ */
816
+ 'schemaId': string;
817
+ }
818
+ /**
819
+ *
820
+ * @export
821
+ * @interface FindSchemaV1Response
822
+ */
823
+ export interface FindSchemaV1Response {
824
+ /**
825
+ *
826
+ * @type {string}
827
+ * @memberof FindSchemaV1Response
828
+ */
829
+ 'category': string;
830
+ /**
831
+ *
832
+ * @type {boolean}
833
+ * @memberof FindSchemaV1Response
834
+ */
835
+ 'installed': boolean;
836
+ /**
837
+ *
838
+ * @type {string}
839
+ * @memberof FindSchemaV1Response
840
+ */
841
+ 'schemaId': string;
842
+ /**
843
+ *
844
+ * @type {string}
845
+ * @memberof FindSchemaV1Response
846
+ */
847
+ 'schemaName': string;
848
+ }
849
+ /**
850
+ *
851
+ * @export
852
+ * @interface ForceApplyChangeSetV1Response
853
+ */
854
+ export interface ForceApplyChangeSetV1Response {
855
+ /**
856
+ *
857
+ * @type {boolean}
858
+ * @memberof ForceApplyChangeSetV1Response
859
+ */
860
+ 'success': boolean;
861
+ }
862
+ /**
863
+ *
864
+ * @export
865
+ * @interface FuncRunLogViewV1
866
+ */
867
+ export interface FuncRunLogViewV1 {
868
+ /**
869
+ *
870
+ * @type {string}
871
+ * @memberof FuncRunLogViewV1
872
+ */
873
+ 'createdAt': string;
874
+ /**
875
+ *
876
+ * @type {boolean}
877
+ * @memberof FuncRunLogViewV1
878
+ */
879
+ 'finalized': boolean;
880
+ /**
881
+ *
882
+ * @type {string}
883
+ * @memberof FuncRunLogViewV1
884
+ */
885
+ 'funcRunId': string;
886
+ /**
887
+ *
888
+ * @type {string}
889
+ * @memberof FuncRunLogViewV1
890
+ */
891
+ 'id': string;
892
+ /**
893
+ *
894
+ * @type {Array<object>}
895
+ * @memberof FuncRunLogViewV1
896
+ */
897
+ 'logs': Array<object>;
898
+ /**
899
+ *
900
+ * @type {string}
901
+ * @memberof FuncRunLogViewV1
902
+ */
903
+ 'updatedAt': string;
904
+ }
905
+ /**
906
+ *
907
+ * @export
908
+ * @interface FuncRunV1RequestPath
909
+ */
910
+ export interface FuncRunV1RequestPath {
911
+ /**
912
+ *
913
+ * @type {string}
914
+ * @memberof FuncRunV1RequestPath
915
+ */
916
+ 'func_run_id': string;
917
+ }
918
+ /**
919
+ *
920
+ * @export
921
+ * @interface FuncRunViewV1
922
+ */
923
+ export interface FuncRunViewV1 {
924
+ /**
925
+ *
926
+ * @type {string}
927
+ * @memberof FuncRunViewV1
928
+ */
929
+ 'actionDisplayName': string;
930
+ /**
931
+ *
932
+ * @type {string}
933
+ * @memberof FuncRunViewV1
934
+ */
935
+ 'actionId': string;
936
+ /**
937
+ *
938
+ * @type {string}
939
+ * @memberof FuncRunViewV1
940
+ */
941
+ 'actionKind': string;
942
+ /**
943
+ *
944
+ * @type {string}
945
+ * @memberof FuncRunViewV1
946
+ */
947
+ 'actionOriginatingChangeSetId': string;
948
+ /**
949
+ *
950
+ * @type {string}
951
+ * @memberof FuncRunViewV1
952
+ */
953
+ 'actionOriginatingChangeSetName': string;
954
+ /**
955
+ *
956
+ * @type {string}
957
+ * @memberof FuncRunViewV1
958
+ */
959
+ 'actionPrototypeId': string;
960
+ /**
961
+ *
962
+ * @type {string}
963
+ * @memberof FuncRunViewV1
964
+ */
965
+ 'actionResultState': string;
966
+ /**
967
+ *
968
+ * @type {string}
969
+ * @memberof FuncRunViewV1
970
+ */
971
+ 'attributeValueId': string;
972
+ /**
973
+ *
974
+ * @type {string}
975
+ * @memberof FuncRunViewV1
976
+ */
977
+ 'backendKind': string;
978
+ /**
979
+ *
980
+ * @type {string}
981
+ * @memberof FuncRunViewV1
982
+ */
983
+ 'backendResponseType': string;
984
+ /**
985
+ *
986
+ * @type {string}
987
+ * @memberof FuncRunViewV1
988
+ */
989
+ 'componentId': string;
990
+ /**
991
+ *
992
+ * @type {string}
993
+ * @memberof FuncRunViewV1
994
+ */
995
+ 'componentName': string;
996
+ /**
997
+ *
998
+ * @type {string}
999
+ * @memberof FuncRunViewV1
1000
+ */
1001
+ 'createdAt': string;
1002
+ /**
1003
+ *
1004
+ * @type {any}
1005
+ * @memberof FuncRunViewV1
1006
+ */
1007
+ 'functionArgs': any;
1008
+ /**
1009
+ *
1010
+ * @type {string}
1011
+ * @memberof FuncRunViewV1
1012
+ */
1013
+ 'functionCodeBase64': string;
1014
+ /**
1015
+ *
1016
+ * @type {string}
1017
+ * @memberof FuncRunViewV1
1018
+ */
1019
+ 'functionDescription': string;
1020
+ /**
1021
+ *
1022
+ * @type {string}
1023
+ * @memberof FuncRunViewV1
1024
+ */
1025
+ 'functionDisplayName': string;
1026
+ /**
1027
+ *
1028
+ * @type {string}
1029
+ * @memberof FuncRunViewV1
1030
+ */
1031
+ 'functionKind': string;
1032
+ /**
1033
+ *
1034
+ * @type {string}
1035
+ * @memberof FuncRunViewV1
1036
+ */
1037
+ 'functionLink': string;
1038
+ /**
1039
+ *
1040
+ * @type {string}
1041
+ * @memberof FuncRunViewV1
1042
+ */
1043
+ 'functionName': string;
1044
+ /**
1045
+ *
1046
+ * @type {string}
1047
+ * @memberof FuncRunViewV1
1048
+ */
1049
+ 'id': string;
1050
+ /**
1051
+ *
1052
+ * @type {FuncRunLogViewV1}
1053
+ * @memberof FuncRunViewV1
1054
+ */
1055
+ 'logs'?: FuncRunLogViewV1 | null;
1056
+ /**
1057
+ *
1058
+ * @type {any}
1059
+ * @memberof FuncRunViewV1
1060
+ */
1061
+ 'resultValue'?: any;
1062
+ /**
1063
+ *
1064
+ * @type {string}
1065
+ * @memberof FuncRunViewV1
1066
+ */
1067
+ 'schemaName': string;
1068
+ /**
1069
+ *
1070
+ * @type {string}
1071
+ * @memberof FuncRunViewV1
1072
+ */
1073
+ 'state': string;
1074
+ /**
1075
+ *
1076
+ * @type {string}
1077
+ * @memberof FuncRunViewV1
1078
+ */
1079
+ 'updatedAt': string;
1080
+ }
1081
+ /**
1082
+ *
1083
+ * @export
1084
+ * @interface GetActionsV1Response
1085
+ */
1086
+ export interface GetActionsV1Response {
1087
+ /**
1088
+ *
1089
+ * @type {Array<ActionViewV1>}
1090
+ * @memberof GetActionsV1Response
1091
+ */
1092
+ 'actions': Array<ActionViewV1>;
1093
+ }
1094
+ /**
1095
+ *
1096
+ * @export
1097
+ * @interface GetChangeSetV1Response
1098
+ */
1099
+ export interface GetChangeSetV1Response {
1100
+ /**
1101
+ *
1102
+ * @type {ChangeSetViewV1}
1103
+ * @memberof GetChangeSetV1Response
1104
+ */
1105
+ 'changeSet': ChangeSetViewV1;
1106
+ }
1107
+ /**
1108
+ *
1109
+ * @export
1110
+ * @interface GetComponentV1Response
1111
+ */
1112
+ export interface GetComponentV1Response {
1113
+ /**
1114
+ *
1115
+ * @type {Array<GetComponentV1ResponseActionFunction>}
1116
+ * @memberof GetComponentV1Response
1117
+ */
1118
+ 'actionFunctions': Array<GetComponentV1ResponseActionFunction>;
1119
+ /**
1120
+ *
1121
+ * @type {ComponentViewV1}
1122
+ * @memberof GetComponentV1Response
1123
+ */
1124
+ 'component': ComponentViewV1;
1125
+ /**
1126
+ *
1127
+ * @type {Array<GetComponentV1ResponseManagementFunction>}
1128
+ * @memberof GetComponentV1Response
1129
+ */
1130
+ 'managementFunctions': Array<GetComponentV1ResponseManagementFunction>;
1131
+ }
1132
+ /**
1133
+ *
1134
+ * @export
1135
+ * @interface GetComponentV1ResponseActionFunction
1136
+ */
1137
+ export interface GetComponentV1ResponseActionFunction {
1138
+ /**
1139
+ *
1140
+ * @type {string}
1141
+ * @memberof GetComponentV1ResponseActionFunction
1142
+ */
1143
+ 'funcName': string;
1144
+ /**
1145
+ *
1146
+ * @type {string}
1147
+ * @memberof GetComponentV1ResponseActionFunction
1148
+ */
1149
+ 'prototypeId': string;
1150
+ }
1151
+ /**
1152
+ *
1153
+ * @export
1154
+ * @interface GetComponentV1ResponseManagementFunction
1155
+ */
1156
+ export interface GetComponentV1ResponseManagementFunction {
1157
+ /**
1158
+ *
1159
+ * @type {string}
1160
+ * @memberof GetComponentV1ResponseManagementFunction
1161
+ */
1162
+ 'funcName': string;
1163
+ /**
1164
+ *
1165
+ * @type {string}
1166
+ * @memberof GetComponentV1ResponseManagementFunction
1167
+ */
1168
+ 'managementPrototypeId': string;
1169
+ }
1170
+ /**
1171
+ *
1172
+ * @export
1173
+ * @interface GetFuncRunV1Response
1174
+ */
1175
+ export interface GetFuncRunV1Response {
1176
+ /**
1177
+ *
1178
+ * @type {FuncRunViewV1}
1179
+ * @memberof GetFuncRunV1Response
1180
+ */
1181
+ 'funcRun': FuncRunViewV1;
1182
+ }
1183
+ /**
1184
+ *
1185
+ * @export
1186
+ * @interface GetFuncV1Response
1187
+ */
1188
+ export interface GetFuncV1Response {
1189
+ /**
1190
+ *
1191
+ * @type {string}
1192
+ * @memberof GetFuncV1Response
1193
+ */
1194
+ 'code': string;
1195
+ /**
1196
+ *
1197
+ * @type {string}
1198
+ * @memberof GetFuncV1Response
1199
+ */
1200
+ 'description': string;
1201
+ /**
1202
+ *
1203
+ * @type {string}
1204
+ * @memberof GetFuncV1Response
1205
+ */
1206
+ 'displayName': string;
1207
+ /**
1208
+ *
1209
+ * @type {boolean}
1210
+ * @memberof GetFuncV1Response
1211
+ */
1212
+ 'isLocked': boolean;
1213
+ /**
1214
+ *
1215
+ * @type {string}
1216
+ * @memberof GetFuncV1Response
1217
+ */
1218
+ 'kind': string;
1219
+ /**
1220
+ *
1221
+ * @type {string}
1222
+ * @memberof GetFuncV1Response
1223
+ */
1224
+ 'link': string;
1225
+ /**
1226
+ *
1227
+ * @type {string}
1228
+ * @memberof GetFuncV1Response
1229
+ */
1230
+ 'name': string;
1231
+ }
1232
+ /**
1233
+ *
1234
+ * @export
1235
+ * @interface GetSchemaV1Response
1236
+ */
1237
+ export interface GetSchemaV1Response {
1238
+ /**
1239
+ *
1240
+ * @type {string}
1241
+ * @memberof GetSchemaV1Response
1242
+ */
1243
+ 'defaultVariantId': string;
1244
+ /**
1245
+ *
1246
+ * @type {string}
1247
+ * @memberof GetSchemaV1Response
1248
+ */
1249
+ 'name': string;
1250
+ /**
1251
+ *
1252
+ * @type {Array<string>}
1253
+ * @memberof GetSchemaV1Response
1254
+ */
1255
+ 'variantIds': Array<string>;
1256
+ }
1257
+ /**
1258
+ *
1259
+ * @export
1260
+ * @interface GetSchemaVariantV1Response
1261
+ */
1262
+ export interface GetSchemaVariantV1Response {
1263
+ /**
1264
+ *
1265
+ * @type {string}
1266
+ * @memberof GetSchemaVariantV1Response
1267
+ */
1268
+ 'assetFuncId': string;
1269
+ /**
1270
+ *
1271
+ * @type {string}
1272
+ * @memberof GetSchemaVariantV1Response
1273
+ */
1274
+ 'category': string;
1275
+ /**
1276
+ *
1277
+ * @type {string}
1278
+ * @memberof GetSchemaVariantV1Response
1279
+ */
1280
+ 'color': string;
1281
+ /**
1282
+ *
1283
+ * @type {string}
1284
+ * @memberof GetSchemaVariantV1Response
1285
+ */
1286
+ 'description': string;
1287
+ /**
1288
+ *
1289
+ * @type {string}
1290
+ * @memberof GetSchemaVariantV1Response
1291
+ */
1292
+ 'displayName': string;
1293
+ /**
1294
+ *
1295
+ * @type {PropSchemaV1}
1296
+ * @memberof GetSchemaVariantV1Response
1297
+ */
1298
+ 'domainProps': PropSchemaV1;
1299
+ /**
1300
+ *
1301
+ * @type {boolean}
1302
+ * @memberof GetSchemaVariantV1Response
1303
+ */
1304
+ 'isDefaultVariant': boolean;
1305
+ /**
1306
+ *
1307
+ * @type {boolean}
1308
+ * @memberof GetSchemaVariantV1Response
1309
+ */
1310
+ 'isLocked': boolean;
1311
+ /**
1312
+ *
1313
+ * @type {string}
1314
+ * @memberof GetSchemaVariantV1Response
1315
+ */
1316
+ 'link': string;
1317
+ /**
1318
+ *
1319
+ * @type {Array<string>}
1320
+ * @memberof GetSchemaVariantV1Response
1321
+ */
1322
+ 'variantFuncIds': Array<string>;
1323
+ /**
1324
+ *
1325
+ * @type {string}
1326
+ * @memberof GetSchemaVariantV1Response
1327
+ */
1328
+ 'variantId': string;
1329
+ }
1330
+ /**
1331
+ *
1332
+ * @export
1333
+ * @interface HashMapValue
1334
+ */
1335
+ export interface HashMapValue {
1336
+ /**
1337
+ *
1338
+ * @type {SecretDefinitionV1}
1339
+ * @memberof HashMapValue
1340
+ */
1341
+ 'definition': SecretDefinitionV1;
1342
+ /**
1343
+ *
1344
+ * @type {Array<SecretV1>}
1345
+ * @memberof HashMapValue
1346
+ */
1347
+ 'secrets': Array<SecretV1>;
1348
+ }
1349
+ /**
1350
+ *
1351
+ * @export
1352
+ * @interface IncomingConnectionViewV1
1353
+ */
1354
+ export interface IncomingConnectionViewV1 {
1355
+ /**
1356
+ *
1357
+ * @type {string}
1358
+ * @memberof IncomingConnectionViewV1
1359
+ */
1360
+ 'from': string;
1361
+ /**
1362
+ *
1363
+ * @type {string}
1364
+ * @memberof IncomingConnectionViewV1
1365
+ */
1366
+ 'fromComponentId': string;
1367
+ /**
1368
+ *
1369
+ * @type {string}
1370
+ * @memberof IncomingConnectionViewV1
1371
+ */
1372
+ 'fromComponentName': string;
1373
+ /**
1374
+ *
1375
+ * @type {string}
1376
+ * @memberof IncomingConnectionViewV1
1377
+ */
1378
+ 'to': string;
1379
+ }
1380
+ /**
1381
+ *
1382
+ * @export
1383
+ * @interface ListChangeSetV1Response
1384
+ */
1385
+ export interface ListChangeSetV1Response {
1386
+ /**
1387
+ *
1388
+ * @type {Array<object>}
1389
+ * @memberof ListChangeSetV1Response
1390
+ */
1391
+ 'changeSets': Array<object>;
1392
+ }
1393
+ /**
1394
+ *
1395
+ * @export
1396
+ * @interface ListComponentsV1Response
1397
+ */
1398
+ export interface ListComponentsV1Response {
1399
+ /**
1400
+ *
1401
+ * @type {Array<Array<string>>}
1402
+ * @memberof ListComponentsV1Response
1403
+ */
1404
+ 'components': Array<Array<string>>;
1405
+ /**
1406
+ *
1407
+ * @type {string}
1408
+ * @memberof ListComponentsV1Response
1409
+ */
1410
+ 'nextCursor'?: string | null;
1411
+ }
1412
+ /**
1413
+ *
1414
+ * @export
1415
+ * @interface ListSchemaV1Response
1416
+ */
1417
+ export interface ListSchemaV1Response {
1418
+ /**
1419
+ *
1420
+ * @type {string}
1421
+ * @memberof ListSchemaV1Response
1422
+ */
1423
+ 'nextCursor'?: string | null;
1424
+ /**
1425
+ *
1426
+ * @type {Array<SchemaResponse>}
1427
+ * @memberof ListSchemaV1Response
1428
+ */
1429
+ 'schemas': Array<SchemaResponse>;
1430
+ }
1431
+ /**
1432
+ *
1433
+ * @export
1434
+ * @interface ManagedByConnectionViewV1
1435
+ */
1436
+ export interface ManagedByConnectionViewV1 {
1437
+ /**
1438
+ *
1439
+ * @type {string}
1440
+ * @memberof ManagedByConnectionViewV1
1441
+ */
1442
+ 'componentId': string;
1443
+ /**
1444
+ *
1445
+ * @type {string}
1446
+ * @memberof ManagedByConnectionViewV1
1447
+ */
1448
+ 'componentName': string;
1449
+ }
1450
+ /**
1451
+ * @type ManagementFunctionReference
1452
+ * Reference to a management function by either name or ID. This allows clients to use the more human-friendly name approach or the more precise ID approach when working with management functions.
1453
+ * @export
1454
+ */
1455
+ export type ManagementFunctionReference = ManagementFunctionReferenceOneOf | ManagementFunctionReferenceOneOf1;
1456
+ /**
1457
+ *
1458
+ * @export
1459
+ * @interface ManagementFunctionReferenceOneOf
1460
+ */
1461
+ export interface ManagementFunctionReferenceOneOf {
1462
+ /**
1463
+ *
1464
+ * @type {string}
1465
+ * @memberof ManagementFunctionReferenceOneOf
1466
+ */
1467
+ 'function': string;
1468
+ }
1469
+ /**
1470
+ *
1471
+ * @export
1472
+ * @interface ManagementFunctionReferenceOneOf1
1473
+ */
1474
+ export interface ManagementFunctionReferenceOneOf1 {
1475
+ /**
1476
+ *
1477
+ * @type {string}
1478
+ * @memberof ManagementFunctionReferenceOneOf1
1479
+ */
1480
+ 'managementPrototypeId': string;
1481
+ }
1482
+ /**
1483
+ *
1484
+ * @export
1485
+ * @interface ManagingConnectionViewV1
1486
+ */
1487
+ export interface ManagingConnectionViewV1 {
1488
+ /**
1489
+ *
1490
+ * @type {string}
1491
+ * @memberof ManagingConnectionViewV1
1492
+ */
1493
+ 'componentId': string;
1494
+ /**
1495
+ *
1496
+ * @type {string}
1497
+ * @memberof ManagingConnectionViewV1
1498
+ */
1499
+ 'componentName': string;
1500
+ }
1501
+ /**
1502
+ * Response for merge status
1503
+ * @export
1504
+ * @interface MergeStatusV1Response
1505
+ */
1506
+ export interface MergeStatusV1Response {
1507
+ /**
1508
+ *
1509
+ * @type {Array<MergeStatusV1ResponseAction>}
1510
+ * @memberof MergeStatusV1Response
1511
+ */
1512
+ 'actions': Array<MergeStatusV1ResponseAction>;
1513
+ /**
1514
+ *
1515
+ * @type {object}
1516
+ * @memberof MergeStatusV1Response
1517
+ */
1518
+ 'changeSet': object;
1519
+ }
1520
+ /**
1521
+ * Action item in merge status response
1522
+ * @export
1523
+ * @interface MergeStatusV1ResponseAction
1524
+ */
1525
+ export interface MergeStatusV1ResponseAction {
1526
+ /**
1527
+ *
1528
+ * @type {MergeStatusV1ResponseActionComponent}
1529
+ * @memberof MergeStatusV1ResponseAction
1530
+ */
1531
+ 'component'?: MergeStatusV1ResponseActionComponent | null;
1532
+ /**
1533
+ *
1534
+ * @type {string}
1535
+ * @memberof MergeStatusV1ResponseAction
1536
+ */
1537
+ 'id': string;
1538
+ /**
1539
+ *
1540
+ * @type {string}
1541
+ * @memberof MergeStatusV1ResponseAction
1542
+ */
1543
+ 'kind': string;
1544
+ /**
1545
+ *
1546
+ * @type {string}
1547
+ * @memberof MergeStatusV1ResponseAction
1548
+ */
1549
+ 'name': string;
1550
+ /**
1551
+ *
1552
+ * @type {string}
1553
+ * @memberof MergeStatusV1ResponseAction
1554
+ */
1555
+ 'state': string;
1556
+ }
1557
+ /**
1558
+ * Component details in action response
1559
+ * @export
1560
+ * @interface MergeStatusV1ResponseActionComponent
1561
+ */
1562
+ export interface MergeStatusV1ResponseActionComponent {
1563
+ /**
1564
+ *
1565
+ * @type {string}
1566
+ * @memberof MergeStatusV1ResponseActionComponent
1567
+ */
1568
+ 'id': string;
1569
+ /**
1570
+ *
1571
+ * @type {string}
1572
+ * @memberof MergeStatusV1ResponseActionComponent
1573
+ */
1574
+ 'name': string;
1575
+ }
1576
+ /**
1577
+ *
1578
+ * @export
1579
+ * @interface OutgoingConnectionViewV1
1580
+ */
1581
+ export interface OutgoingConnectionViewV1 {
1582
+ /**
1583
+ *
1584
+ * @type {string}
1585
+ * @memberof OutgoingConnectionViewV1
1586
+ */
1587
+ 'from': string;
1588
+ /**
1589
+ *
1590
+ * @type {string}
1591
+ * @memberof OutgoingConnectionViewV1
1592
+ */
1593
+ 'toComponentId': string;
1594
+ /**
1595
+ *
1596
+ * @type {string}
1597
+ * @memberof OutgoingConnectionViewV1
1598
+ */
1599
+ 'toComponentName': string;
1600
+ }
1601
+ /**
1602
+ *
1603
+ * @export
1604
+ * @interface OutputLineViewV1
1605
+ */
1606
+ export interface OutputLineViewV1 {
1607
+ /**
1608
+ *
1609
+ * @type {string}
1610
+ * @memberof OutputLineViewV1
1611
+ */
1612
+ 'executionId': string;
1613
+ /**
1614
+ *
1615
+ * @type {string}
1616
+ * @memberof OutputLineViewV1
1617
+ */
1618
+ 'group'?: string | null;
1619
+ /**
1620
+ *
1621
+ * @type {string}
1622
+ * @memberof OutputLineViewV1
1623
+ */
1624
+ 'level': string;
1625
+ /**
1626
+ *
1627
+ * @type {string}
1628
+ * @memberof OutputLineViewV1
1629
+ */
1630
+ 'message': string;
1631
+ /**
1632
+ *
1633
+ * @type {string}
1634
+ * @memberof OutputLineViewV1
1635
+ */
1636
+ 'stream': string;
1637
+ /**
1638
+ *
1639
+ * @type {number}
1640
+ * @memberof OutputLineViewV1
1641
+ */
1642
+ 'timestamp': number;
1643
+ }
1644
+ /**
1645
+ *
1646
+ * @export
1647
+ * @interface PropSchemaV1
1648
+ */
1649
+ export interface PropSchemaV1 {
1650
+ /**
1651
+ *
1652
+ * @type {Array<PropSchemaV1>}
1653
+ * @memberof PropSchemaV1
1654
+ */
1655
+ 'children': Array<PropSchemaV1>;
1656
+ /**
1657
+ *
1658
+ * @type {string}
1659
+ * @memberof PropSchemaV1
1660
+ */
1661
+ 'description': string;
1662
+ /**
1663
+ *
1664
+ * @type {string}
1665
+ * @memberof PropSchemaV1
1666
+ */
1667
+ 'name': string;
1668
+ /**
1669
+ *
1670
+ * @type {string}
1671
+ * @memberof PropSchemaV1
1672
+ */
1673
+ 'propId': string;
1674
+ /**
1675
+ *
1676
+ * @type {string}
1677
+ * @memberof PropSchemaV1
1678
+ */
1679
+ 'propType': string;
1680
+ }
1681
+ /**
1682
+ *
1683
+ * @export
1684
+ * @interface PurgeOpenChangeSetsV1Response
1685
+ */
1686
+ export interface PurgeOpenChangeSetsV1Response {
1687
+ /**
1688
+ *
1689
+ * @type {boolean}
1690
+ * @memberof PurgeOpenChangeSetsV1Response
1691
+ */
1692
+ 'success': boolean;
1693
+ }
1694
+ /**
1695
+ *
1696
+ * @export
1697
+ * @interface PutOnHoldActionV1Response
1698
+ */
1699
+ export interface PutOnHoldActionV1Response {
1700
+ /**
1701
+ *
1702
+ * @type {boolean}
1703
+ * @memberof PutOnHoldActionV1Response
1704
+ */
1705
+ 'success': boolean;
1706
+ }
1707
+ /**
1708
+ *
1709
+ * @export
1710
+ * @interface RequestApprovalChangeSetV1Response
1711
+ */
1712
+ export interface RequestApprovalChangeSetV1Response {
1713
+ /**
1714
+ *
1715
+ * @type {boolean}
1716
+ * @memberof RequestApprovalChangeSetV1Response
1717
+ */
1718
+ 'success': boolean;
1719
+ }
1720
+ /**
1721
+ *
1722
+ * @export
1723
+ * @interface RetryActionV1Response
1724
+ */
1725
+ export interface RetryActionV1Response {
1726
+ /**
1727
+ *
1728
+ * @type {boolean}
1729
+ * @memberof RetryActionV1Response
1730
+ */
1731
+ 'success': boolean;
1732
+ }
1733
+ /**
1734
+ *
1735
+ * @export
1736
+ * @interface SchemaResponse
1737
+ */
1738
+ export interface SchemaResponse {
1739
+ /**
1740
+ *
1741
+ * @type {string}
1742
+ * @memberof SchemaResponse
1743
+ */
1744
+ 'category'?: string | null;
1745
+ /**
1746
+ *
1747
+ * @type {boolean}
1748
+ * @memberof SchemaResponse
1749
+ */
1750
+ 'installed': boolean;
1751
+ /**
1752
+ *
1753
+ * @type {string}
1754
+ * @memberof SchemaResponse
1755
+ */
1756
+ 'schemaId': string;
1757
+ /**
1758
+ *
1759
+ * @type {string}
1760
+ * @memberof SchemaResponse
1761
+ */
1762
+ 'schemaName': string;
1763
+ }
1764
+ /**
1765
+ *
1766
+ * @export
1767
+ * @interface SchemaV1RequestPath
1768
+ */
1769
+ export interface SchemaV1RequestPath {
1770
+ /**
1771
+ *
1772
+ * @type {string}
1773
+ * @memberof SchemaV1RequestPath
1774
+ */
1775
+ 'schema_id': string;
1776
+ }
1777
+ /**
1778
+ *
1779
+ * @export
1780
+ * @interface SchemaVariantV1RequestPath
1781
+ */
1782
+ export interface SchemaVariantV1RequestPath {
1783
+ /**
1784
+ *
1785
+ * @type {string}
1786
+ * @memberof SchemaVariantV1RequestPath
1787
+ */
1788
+ 'schema_id': string;
1789
+ /**
1790
+ *
1791
+ * @type {string}
1792
+ * @memberof SchemaVariantV1RequestPath
1793
+ */
1794
+ 'schema_variant_id': string;
1795
+ }
1796
+ /**
1797
+ *
1798
+ * @export
1799
+ * @interface SecretDefinitionV1
1800
+ */
1801
+ export interface SecretDefinitionV1 {
1802
+ /**
1803
+ *
1804
+ * @type {Array<SecretFormDataV1>}
1805
+ * @memberof SecretDefinitionV1
1806
+ */
1807
+ 'formData': Array<SecretFormDataV1>;
1808
+ /**
1809
+ *
1810
+ * @type {string}
1811
+ * @memberof SecretDefinitionV1
1812
+ */
1813
+ 'secretDefinition': string;
1814
+ }
1815
+ /**
1816
+ *
1817
+ * @export
1818
+ * @interface SecretFormDataV1
1819
+ */
1820
+ export interface SecretFormDataV1 {
1821
+ /**
1822
+ *
1823
+ * @type {string}
1824
+ * @memberof SecretFormDataV1
1825
+ */
1826
+ 'kind': string;
1827
+ /**
1828
+ *
1829
+ * @type {string}
1830
+ * @memberof SecretFormDataV1
1831
+ */
1832
+ 'name': string;
1833
+ }
1834
+ /**
1835
+ * @type SecretPropKey
1836
+ * @export
1837
+ */
1838
+ export type SecretPropKey = string;
1839
+ /**
1840
+ *
1841
+ * @export
1842
+ * @interface SecretV1
1843
+ */
1844
+ export interface SecretV1 {
1845
+ /**
1846
+ *
1847
+ * @type {string}
1848
+ * @memberof SecretV1
1849
+ */
1850
+ 'definition': string;
1851
+ /**
1852
+ *
1853
+ * @type {string}
1854
+ * @memberof SecretV1
1855
+ */
1856
+ 'description': string;
1857
+ /**
1858
+ *
1859
+ * @type {string}
1860
+ * @memberof SecretV1
1861
+ */
1862
+ 'id': string;
1863
+ /**
1864
+ *
1865
+ * @type {string}
1866
+ * @memberof SecretV1
1867
+ */
1868
+ 'name': string;
1869
+ }
1870
+ /**
1871
+ *
1872
+ * @export
1873
+ * @enum {string}
1874
+ */
1875
+ export declare enum SocketDirection {
1876
+ INPUT = "input",
1877
+ OUTPUT = "output"
1878
+ }
1879
+ /**
1880
+ *
1881
+ * @export
1882
+ * @interface SocketViewV1
1883
+ */
1884
+ export interface SocketViewV1 {
1885
+ /**
1886
+ *
1887
+ * @type {string}
1888
+ * @memberof SocketViewV1
1889
+ */
1890
+ 'arity': string;
1891
+ /**
1892
+ *
1893
+ * @type {SocketDirection}
1894
+ * @memberof SocketViewV1
1895
+ */
1896
+ 'direction': SocketDirection;
1897
+ /**
1898
+ *
1899
+ * @type {string}
1900
+ * @memberof SocketViewV1
1901
+ */
1902
+ 'id': string;
1903
+ /**
1904
+ *
1905
+ * @type {string}
1906
+ * @memberof SocketViewV1
1907
+ */
1908
+ 'name': string;
1909
+ /**
1910
+ *
1911
+ * @type {object}
1912
+ * @memberof SocketViewV1
1913
+ */
1914
+ 'value': object;
1915
+ }
1916
+ /**
1917
+ *
1918
+ * @export
1919
+ * @interface SystemStatusResponse
1920
+ */
1921
+ export interface SystemStatusResponse {
1922
+ /**
1923
+ *
1924
+ * @type {string}
1925
+ * @memberof SystemStatusResponse
1926
+ */
1927
+ 'API Documentation': string;
1928
+ /**
1929
+ *
1930
+ * @type {string}
1931
+ * @memberof SystemStatusResponse
1932
+ */
1933
+ 'What is this?': string;
1934
+ }
1935
+ /**
1936
+ *
1937
+ * @export
1938
+ * @interface UpdateComponentV1Request
1939
+ */
1940
+ export interface UpdateComponentV1Request {
1941
+ /**
1942
+ *
1943
+ * @type {ConnectionDetails}
1944
+ * @memberof UpdateComponentV1Request
1945
+ */
1946
+ 'connectionChanges'?: ConnectionDetails;
1947
+ /**
1948
+ *
1949
+ * @type {{ [key: string]: any; }}
1950
+ * @memberof UpdateComponentV1Request
1951
+ */
1952
+ 'domain'?: {
1953
+ [key: string]: any;
1954
+ };
1955
+ /**
1956
+ *
1957
+ * @type {string}
1958
+ * @memberof UpdateComponentV1Request
1959
+ */
1960
+ 'name'?: string | null;
1961
+ /**
1962
+ *
1963
+ * @type {string}
1964
+ * @memberof UpdateComponentV1Request
1965
+ */
1966
+ 'resourceId'?: string | null;
1967
+ /**
1968
+ *
1969
+ * @type {{ [key: string]: any; }}
1970
+ * @memberof UpdateComponentV1Request
1971
+ */
1972
+ 'secrets'?: {
1973
+ [key: string]: any;
1974
+ };
1975
+ /**
1976
+ *
1977
+ * @type {Array<string>}
1978
+ * @memberof UpdateComponentV1Request
1979
+ */
1980
+ 'unset'?: Array<string>;
1981
+ }
1982
+ /**
1983
+ *
1984
+ * @export
1985
+ * @interface UpdateComponentV1Response
1986
+ */
1987
+ export interface UpdateComponentV1Response {
1988
+ /**
1989
+ *
1990
+ * @type {ComponentViewV1}
1991
+ * @memberof UpdateComponentV1Response
1992
+ */
1993
+ 'component': ComponentViewV1;
1994
+ }
1995
+ /**
1996
+ *
1997
+ * @export
1998
+ * @interface UpdateSecretV1Request
1999
+ */
2000
+ export interface UpdateSecretV1Request {
2001
+ /**
2002
+ *
2003
+ * @type {string}
2004
+ * @memberof UpdateSecretV1Request
2005
+ */
2006
+ 'description': string;
2007
+ /**
2008
+ *
2009
+ * @type {string}
2010
+ * @memberof UpdateSecretV1Request
2011
+ */
2012
+ 'id': string;
2013
+ /**
2014
+ *
2015
+ * @type {string}
2016
+ * @memberof UpdateSecretV1Request
2017
+ */
2018
+ 'name': string;
2019
+ /**
2020
+ *
2021
+ * @type {{ [key: string]: string; }}
2022
+ * @memberof UpdateSecretV1Request
2023
+ */
2024
+ 'rawData'?: {
2025
+ [key: string]: string;
2026
+ };
2027
+ }
2028
+ /**
2029
+ *
2030
+ * @export
2031
+ * @interface UpdateSecretV1Response
2032
+ */
2033
+ export interface UpdateSecretV1Response {
2034
+ /**
2035
+ *
2036
+ * @type {SecretV1}
2037
+ * @memberof UpdateSecretV1Response
2038
+ */
2039
+ 'secret': SecretV1;
2040
+ }
2041
+ /**
2042
+ *
2043
+ * @export
2044
+ * @interface ViewV1
2045
+ */
2046
+ export interface ViewV1 {
2047
+ /**
2048
+ *
2049
+ * @type {string}
2050
+ * @memberof ViewV1
2051
+ */
2052
+ 'id': string;
2053
+ /**
2054
+ *
2055
+ * @type {boolean}
2056
+ * @memberof ViewV1
2057
+ */
2058
+ 'isDefault': boolean;
2059
+ /**
2060
+ *
2061
+ * @type {string}
2062
+ * @memberof ViewV1
2063
+ */
2064
+ 'name': string;
2065
+ }
2066
+ /**
2067
+ *
2068
+ * @export
2069
+ * @interface WhoamiResponse
2070
+ */
2071
+ export interface WhoamiResponse {
2072
+ /**
2073
+ *
2074
+ * @type {object}
2075
+ * @memberof WhoamiResponse
2076
+ */
2077
+ 'token': object;
2078
+ /**
2079
+ *
2080
+ * @type {string}
2081
+ * @memberof WhoamiResponse
2082
+ */
2083
+ 'userEmail': string;
2084
+ /**
2085
+ *
2086
+ * @type {string}
2087
+ * @memberof WhoamiResponse
2088
+ */
2089
+ 'userId': string;
2090
+ /**
2091
+ *
2092
+ * @type {string}
2093
+ * @memberof WhoamiResponse
2094
+ */
2095
+ 'workspaceId': string;
2096
+ }
2097
+ /**
2098
+ * ActionsApi - axios parameter creator
2099
+ * @export
2100
+ */
2101
+ export declare const ActionsApiAxiosParamCreator: (configuration?: Configuration) => {
2102
+ /**
2103
+ *
2104
+ * @param {string} workspaceId Workspace identifier
2105
+ * @param {string} changeSetId Change set identifier
2106
+ * @param {string} actionId Action identifier
2107
+ * @param {*} [options] Override http request option.
2108
+ * @throws {RequiredError}
2109
+ */
2110
+ cancelAction: (workspaceId: string, changeSetId: string, actionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2111
+ /**
2112
+ *
2113
+ * @param {string} workspaceId Workspace identifier
2114
+ * @param {string} changeSetId Change set identifier
2115
+ * @param {*} [options] Override http request option.
2116
+ * @throws {RequiredError}
2117
+ */
2118
+ getActions: (workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2119
+ /**
2120
+ *
2121
+ * @param {string} workspaceId Workspace identifier
2122
+ * @param {string} changeSetId Change set identifier
2123
+ * @param {string} actionId Action identifier
2124
+ * @param {*} [options] Override http request option.
2125
+ * @throws {RequiredError}
2126
+ */
2127
+ putOnHold: (workspaceId: string, changeSetId: string, actionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2128
+ /**
2129
+ *
2130
+ * @param {string} workspaceId Workspace identifier
2131
+ * @param {string} changeSetId Change set identifier
2132
+ * @param {string} actionId Action identifier
2133
+ * @param {*} [options] Override http request option.
2134
+ * @throws {RequiredError}
2135
+ */
2136
+ retryAction: (workspaceId: string, changeSetId: string, actionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2137
+ };
2138
+ /**
2139
+ * ActionsApi - functional programming interface
2140
+ * @export
2141
+ */
2142
+ export declare const ActionsApiFp: (configuration?: Configuration) => {
2143
+ /**
2144
+ *
2145
+ * @param {string} workspaceId Workspace identifier
2146
+ * @param {string} changeSetId Change set identifier
2147
+ * @param {string} actionId Action identifier
2148
+ * @param {*} [options] Override http request option.
2149
+ * @throws {RequiredError}
2150
+ */
2151
+ cancelAction(workspaceId: string, changeSetId: string, actionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CancelActionV1Response>>;
2152
+ /**
2153
+ *
2154
+ * @param {string} workspaceId Workspace identifier
2155
+ * @param {string} changeSetId Change set identifier
2156
+ * @param {*} [options] Override http request option.
2157
+ * @throws {RequiredError}
2158
+ */
2159
+ getActions(workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetActionsV1Response>>;
2160
+ /**
2161
+ *
2162
+ * @param {string} workspaceId Workspace identifier
2163
+ * @param {string} changeSetId Change set identifier
2164
+ * @param {string} actionId Action identifier
2165
+ * @param {*} [options] Override http request option.
2166
+ * @throws {RequiredError}
2167
+ */
2168
+ putOnHold(workspaceId: string, changeSetId: string, actionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PutOnHoldActionV1Response>>;
2169
+ /**
2170
+ *
2171
+ * @param {string} workspaceId Workspace identifier
2172
+ * @param {string} changeSetId Change set identifier
2173
+ * @param {string} actionId Action identifier
2174
+ * @param {*} [options] Override http request option.
2175
+ * @throws {RequiredError}
2176
+ */
2177
+ retryAction(workspaceId: string, changeSetId: string, actionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RetryActionV1Response>>;
2178
+ };
2179
+ /**
2180
+ * ActionsApi - factory interface
2181
+ * @export
2182
+ */
2183
+ export declare const ActionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2184
+ /**
2185
+ *
2186
+ * @param {ActionsApiCancelActionRequest} requestParameters Request parameters.
2187
+ * @param {*} [options] Override http request option.
2188
+ * @throws {RequiredError}
2189
+ */
2190
+ cancelAction(requestParameters: ActionsApiCancelActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CancelActionV1Response>;
2191
+ /**
2192
+ *
2193
+ * @param {ActionsApiGetActionsRequest} requestParameters Request parameters.
2194
+ * @param {*} [options] Override http request option.
2195
+ * @throws {RequiredError}
2196
+ */
2197
+ getActions(requestParameters: ActionsApiGetActionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetActionsV1Response>;
2198
+ /**
2199
+ *
2200
+ * @param {ActionsApiPutOnHoldRequest} requestParameters Request parameters.
2201
+ * @param {*} [options] Override http request option.
2202
+ * @throws {RequiredError}
2203
+ */
2204
+ putOnHold(requestParameters: ActionsApiPutOnHoldRequest, options?: RawAxiosRequestConfig): AxiosPromise<PutOnHoldActionV1Response>;
2205
+ /**
2206
+ *
2207
+ * @param {ActionsApiRetryActionRequest} requestParameters Request parameters.
2208
+ * @param {*} [options] Override http request option.
2209
+ * @throws {RequiredError}
2210
+ */
2211
+ retryAction(requestParameters: ActionsApiRetryActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<RetryActionV1Response>;
2212
+ };
2213
+ /**
2214
+ * ActionsApi - interface
2215
+ * @export
2216
+ * @interface ActionsApi
2217
+ */
2218
+ export interface ActionsApiInterface {
2219
+ /**
2220
+ *
2221
+ * @param {ActionsApiCancelActionRequest} requestParameters Request parameters.
2222
+ * @param {*} [options] Override http request option.
2223
+ * @throws {RequiredError}
2224
+ * @memberof ActionsApiInterface
2225
+ */
2226
+ cancelAction(requestParameters: ActionsApiCancelActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<CancelActionV1Response>;
2227
+ /**
2228
+ *
2229
+ * @param {ActionsApiGetActionsRequest} requestParameters Request parameters.
2230
+ * @param {*} [options] Override http request option.
2231
+ * @throws {RequiredError}
2232
+ * @memberof ActionsApiInterface
2233
+ */
2234
+ getActions(requestParameters: ActionsApiGetActionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetActionsV1Response>;
2235
+ /**
2236
+ *
2237
+ * @param {ActionsApiPutOnHoldRequest} requestParameters Request parameters.
2238
+ * @param {*} [options] Override http request option.
2239
+ * @throws {RequiredError}
2240
+ * @memberof ActionsApiInterface
2241
+ */
2242
+ putOnHold(requestParameters: ActionsApiPutOnHoldRequest, options?: RawAxiosRequestConfig): AxiosPromise<PutOnHoldActionV1Response>;
2243
+ /**
2244
+ *
2245
+ * @param {ActionsApiRetryActionRequest} requestParameters Request parameters.
2246
+ * @param {*} [options] Override http request option.
2247
+ * @throws {RequiredError}
2248
+ * @memberof ActionsApiInterface
2249
+ */
2250
+ retryAction(requestParameters: ActionsApiRetryActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<RetryActionV1Response>;
2251
+ }
2252
+ /**
2253
+ * Request parameters for cancelAction operation in ActionsApi.
2254
+ * @export
2255
+ * @interface ActionsApiCancelActionRequest
2256
+ */
2257
+ export interface ActionsApiCancelActionRequest {
2258
+ /**
2259
+ * Workspace identifier
2260
+ * @type {string}
2261
+ * @memberof ActionsApiCancelAction
2262
+ */
2263
+ readonly workspaceId: string;
2264
+ /**
2265
+ * Change set identifier
2266
+ * @type {string}
2267
+ * @memberof ActionsApiCancelAction
2268
+ */
2269
+ readonly changeSetId: string;
2270
+ /**
2271
+ * Action identifier
2272
+ * @type {string}
2273
+ * @memberof ActionsApiCancelAction
2274
+ */
2275
+ readonly actionId: string;
2276
+ }
2277
+ /**
2278
+ * Request parameters for getActions operation in ActionsApi.
2279
+ * @export
2280
+ * @interface ActionsApiGetActionsRequest
2281
+ */
2282
+ export interface ActionsApiGetActionsRequest {
2283
+ /**
2284
+ * Workspace identifier
2285
+ * @type {string}
2286
+ * @memberof ActionsApiGetActions
2287
+ */
2288
+ readonly workspaceId: string;
2289
+ /**
2290
+ * Change set identifier
2291
+ * @type {string}
2292
+ * @memberof ActionsApiGetActions
2293
+ */
2294
+ readonly changeSetId: string;
2295
+ }
2296
+ /**
2297
+ * Request parameters for putOnHold operation in ActionsApi.
2298
+ * @export
2299
+ * @interface ActionsApiPutOnHoldRequest
2300
+ */
2301
+ export interface ActionsApiPutOnHoldRequest {
2302
+ /**
2303
+ * Workspace identifier
2304
+ * @type {string}
2305
+ * @memberof ActionsApiPutOnHold
2306
+ */
2307
+ readonly workspaceId: string;
2308
+ /**
2309
+ * Change set identifier
2310
+ * @type {string}
2311
+ * @memberof ActionsApiPutOnHold
2312
+ */
2313
+ readonly changeSetId: string;
2314
+ /**
2315
+ * Action identifier
2316
+ * @type {string}
2317
+ * @memberof ActionsApiPutOnHold
2318
+ */
2319
+ readonly actionId: string;
2320
+ }
2321
+ /**
2322
+ * Request parameters for retryAction operation in ActionsApi.
2323
+ * @export
2324
+ * @interface ActionsApiRetryActionRequest
2325
+ */
2326
+ export interface ActionsApiRetryActionRequest {
2327
+ /**
2328
+ * Workspace identifier
2329
+ * @type {string}
2330
+ * @memberof ActionsApiRetryAction
2331
+ */
2332
+ readonly workspaceId: string;
2333
+ /**
2334
+ * Change set identifier
2335
+ * @type {string}
2336
+ * @memberof ActionsApiRetryAction
2337
+ */
2338
+ readonly changeSetId: string;
2339
+ /**
2340
+ * Action identifier
2341
+ * @type {string}
2342
+ * @memberof ActionsApiRetryAction
2343
+ */
2344
+ readonly actionId: string;
2345
+ }
2346
+ /**
2347
+ * ActionsApi - object-oriented interface
2348
+ * @export
2349
+ * @class ActionsApi
2350
+ * @extends {BaseAPI}
2351
+ */
2352
+ export declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
2353
+ /**
2354
+ *
2355
+ * @param {ActionsApiCancelActionRequest} requestParameters Request parameters.
2356
+ * @param {*} [options] Override http request option.
2357
+ * @throws {RequiredError}
2358
+ * @memberof ActionsApi
2359
+ */
2360
+ cancelAction(requestParameters: ActionsApiCancelActionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CancelActionV1Response, any>>;
2361
+ /**
2362
+ *
2363
+ * @param {ActionsApiGetActionsRequest} requestParameters Request parameters.
2364
+ * @param {*} [options] Override http request option.
2365
+ * @throws {RequiredError}
2366
+ * @memberof ActionsApi
2367
+ */
2368
+ getActions(requestParameters: ActionsApiGetActionsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetActionsV1Response, any>>;
2369
+ /**
2370
+ *
2371
+ * @param {ActionsApiPutOnHoldRequest} requestParameters Request parameters.
2372
+ * @param {*} [options] Override http request option.
2373
+ * @throws {RequiredError}
2374
+ * @memberof ActionsApi
2375
+ */
2376
+ putOnHold(requestParameters: ActionsApiPutOnHoldRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PutOnHoldActionV1Response, any>>;
2377
+ /**
2378
+ *
2379
+ * @param {ActionsApiRetryActionRequest} requestParameters Request parameters.
2380
+ * @param {*} [options] Override http request option.
2381
+ * @throws {RequiredError}
2382
+ * @memberof ActionsApi
2383
+ */
2384
+ retryAction(requestParameters: ActionsApiRetryActionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RetryActionV1Response, any>>;
2385
+ }
2386
+ /**
2387
+ * ChangeSetsApi - axios parameter creator
2388
+ * @export
2389
+ */
2390
+ export declare const ChangeSetsApiAxiosParamCreator: (configuration?: Configuration) => {
2391
+ /**
2392
+ *
2393
+ * @param {string} workspaceId Workspace identifier
2394
+ * @param {string} changeSetId Change set identifier
2395
+ * @param {*} [options] Override http request option.
2396
+ * @throws {RequiredError}
2397
+ */
2398
+ abandonChangeSet: (workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2399
+ /**
2400
+ *
2401
+ * @param {string} workspaceId Workspace identifier
2402
+ * @param {CreateChangeSetV1Request} createChangeSetV1Request
2403
+ * @param {*} [options] Override http request option.
2404
+ * @throws {RequiredError}
2405
+ */
2406
+ createChangeSet: (workspaceId: string, createChangeSetV1Request: CreateChangeSetV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2407
+ /**
2408
+ *
2409
+ * @param {string} workspaceId Workspace identifier
2410
+ * @param {string} changeSetId Change set identifier
2411
+ * @param {*} [options] Override http request option.
2412
+ * @throws {RequiredError}
2413
+ */
2414
+ forceApply: (workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2415
+ /**
2416
+ *
2417
+ * @param {string} workspaceId Workspace identifier
2418
+ * @param {string} changeSetId Change set identifier
2419
+ * @param {*} [options] Override http request option.
2420
+ * @throws {RequiredError}
2421
+ */
2422
+ getChangeSet: (workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2423
+ /**
2424
+ *
2425
+ * @param {string} workspaceId Workspace identifier
2426
+ * @param {*} [options] Override http request option.
2427
+ * @throws {RequiredError}
2428
+ */
2429
+ listChangeSets: (workspaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2430
+ /**
2431
+ *
2432
+ * @param {string} workspaceId Workspace identifier
2433
+ * @param {string} changeSetId Change set identifier
2434
+ * @param {*} [options] Override http request option.
2435
+ * @throws {RequiredError}
2436
+ */
2437
+ mergeStatus: (workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2438
+ /**
2439
+ *
2440
+ * @param {string} workspaceId Workspace identifier
2441
+ * @param {*} [options] Override http request option.
2442
+ * @throws {RequiredError}
2443
+ */
2444
+ purgeOpen: (workspaceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2445
+ /**
2446
+ *
2447
+ * @param {string} workspaceId Workspace identifier
2448
+ * @param {string} changeSetId Change set identifier
2449
+ * @param {*} [options] Override http request option.
2450
+ * @throws {RequiredError}
2451
+ */
2452
+ requestApproval: (workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2453
+ };
2454
+ /**
2455
+ * ChangeSetsApi - functional programming interface
2456
+ * @export
2457
+ */
2458
+ export declare const ChangeSetsApiFp: (configuration?: Configuration) => {
2459
+ /**
2460
+ *
2461
+ * @param {string} workspaceId Workspace identifier
2462
+ * @param {string} changeSetId Change set identifier
2463
+ * @param {*} [options] Override http request option.
2464
+ * @throws {RequiredError}
2465
+ */
2466
+ abandonChangeSet(workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteChangeSetV1Response>>;
2467
+ /**
2468
+ *
2469
+ * @param {string} workspaceId Workspace identifier
2470
+ * @param {CreateChangeSetV1Request} createChangeSetV1Request
2471
+ * @param {*} [options] Override http request option.
2472
+ * @throws {RequiredError}
2473
+ */
2474
+ createChangeSet(workspaceId: string, createChangeSetV1Request: CreateChangeSetV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateChangeSetV1Response>>;
2475
+ /**
2476
+ *
2477
+ * @param {string} workspaceId Workspace identifier
2478
+ * @param {string} changeSetId Change set identifier
2479
+ * @param {*} [options] Override http request option.
2480
+ * @throws {RequiredError}
2481
+ */
2482
+ forceApply(workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ForceApplyChangeSetV1Response>>;
2483
+ /**
2484
+ *
2485
+ * @param {string} workspaceId Workspace identifier
2486
+ * @param {string} changeSetId Change set identifier
2487
+ * @param {*} [options] Override http request option.
2488
+ * @throws {RequiredError}
2489
+ */
2490
+ getChangeSet(workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetChangeSetV1Response>>;
2491
+ /**
2492
+ *
2493
+ * @param {string} workspaceId Workspace identifier
2494
+ * @param {*} [options] Override http request option.
2495
+ * @throws {RequiredError}
2496
+ */
2497
+ listChangeSets(workspaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListChangeSetV1Response>>;
2498
+ /**
2499
+ *
2500
+ * @param {string} workspaceId Workspace identifier
2501
+ * @param {string} changeSetId Change set identifier
2502
+ * @param {*} [options] Override http request option.
2503
+ * @throws {RequiredError}
2504
+ */
2505
+ mergeStatus(workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<MergeStatusV1Response>>;
2506
+ /**
2507
+ *
2508
+ * @param {string} workspaceId Workspace identifier
2509
+ * @param {*} [options] Override http request option.
2510
+ * @throws {RequiredError}
2511
+ */
2512
+ purgeOpen(workspaceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PurgeOpenChangeSetsV1Response>>;
2513
+ /**
2514
+ *
2515
+ * @param {string} workspaceId Workspace identifier
2516
+ * @param {string} changeSetId Change set identifier
2517
+ * @param {*} [options] Override http request option.
2518
+ * @throws {RequiredError}
2519
+ */
2520
+ requestApproval(workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RequestApprovalChangeSetV1Response>>;
2521
+ };
2522
+ /**
2523
+ * ChangeSetsApi - factory interface
2524
+ * @export
2525
+ */
2526
+ export declare const ChangeSetsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
2527
+ /**
2528
+ *
2529
+ * @param {ChangeSetsApiAbandonChangeSetRequest} requestParameters Request parameters.
2530
+ * @param {*} [options] Override http request option.
2531
+ * @throws {RequiredError}
2532
+ */
2533
+ abandonChangeSet(requestParameters: ChangeSetsApiAbandonChangeSetRequest, options?: RawAxiosRequestConfig): AxiosPromise<DeleteChangeSetV1Response>;
2534
+ /**
2535
+ *
2536
+ * @param {ChangeSetsApiCreateChangeSetRequest} requestParameters Request parameters.
2537
+ * @param {*} [options] Override http request option.
2538
+ * @throws {RequiredError}
2539
+ */
2540
+ createChangeSet(requestParameters: ChangeSetsApiCreateChangeSetRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateChangeSetV1Response>;
2541
+ /**
2542
+ *
2543
+ * @param {ChangeSetsApiForceApplyRequest} requestParameters Request parameters.
2544
+ * @param {*} [options] Override http request option.
2545
+ * @throws {RequiredError}
2546
+ */
2547
+ forceApply(requestParameters: ChangeSetsApiForceApplyRequest, options?: RawAxiosRequestConfig): AxiosPromise<ForceApplyChangeSetV1Response>;
2548
+ /**
2549
+ *
2550
+ * @param {ChangeSetsApiGetChangeSetRequest} requestParameters Request parameters.
2551
+ * @param {*} [options] Override http request option.
2552
+ * @throws {RequiredError}
2553
+ */
2554
+ getChangeSet(requestParameters: ChangeSetsApiGetChangeSetRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetChangeSetV1Response>;
2555
+ /**
2556
+ *
2557
+ * @param {ChangeSetsApiListChangeSetsRequest} requestParameters Request parameters.
2558
+ * @param {*} [options] Override http request option.
2559
+ * @throws {RequiredError}
2560
+ */
2561
+ listChangeSets(requestParameters: ChangeSetsApiListChangeSetsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListChangeSetV1Response>;
2562
+ /**
2563
+ *
2564
+ * @param {ChangeSetsApiMergeStatusRequest} requestParameters Request parameters.
2565
+ * @param {*} [options] Override http request option.
2566
+ * @throws {RequiredError}
2567
+ */
2568
+ mergeStatus(requestParameters: ChangeSetsApiMergeStatusRequest, options?: RawAxiosRequestConfig): AxiosPromise<MergeStatusV1Response>;
2569
+ /**
2570
+ *
2571
+ * @param {ChangeSetsApiPurgeOpenRequest} requestParameters Request parameters.
2572
+ * @param {*} [options] Override http request option.
2573
+ * @throws {RequiredError}
2574
+ */
2575
+ purgeOpen(requestParameters: ChangeSetsApiPurgeOpenRequest, options?: RawAxiosRequestConfig): AxiosPromise<PurgeOpenChangeSetsV1Response>;
2576
+ /**
2577
+ *
2578
+ * @param {ChangeSetsApiRequestApprovalRequest} requestParameters Request parameters.
2579
+ * @param {*} [options] Override http request option.
2580
+ * @throws {RequiredError}
2581
+ */
2582
+ requestApproval(requestParameters: ChangeSetsApiRequestApprovalRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestApprovalChangeSetV1Response>;
2583
+ };
2584
+ /**
2585
+ * ChangeSetsApi - interface
2586
+ * @export
2587
+ * @interface ChangeSetsApi
2588
+ */
2589
+ export interface ChangeSetsApiInterface {
2590
+ /**
2591
+ *
2592
+ * @param {ChangeSetsApiAbandonChangeSetRequest} requestParameters Request parameters.
2593
+ * @param {*} [options] Override http request option.
2594
+ * @throws {RequiredError}
2595
+ * @memberof ChangeSetsApiInterface
2596
+ */
2597
+ abandonChangeSet(requestParameters: ChangeSetsApiAbandonChangeSetRequest, options?: RawAxiosRequestConfig): AxiosPromise<DeleteChangeSetV1Response>;
2598
+ /**
2599
+ *
2600
+ * @param {ChangeSetsApiCreateChangeSetRequest} requestParameters Request parameters.
2601
+ * @param {*} [options] Override http request option.
2602
+ * @throws {RequiredError}
2603
+ * @memberof ChangeSetsApiInterface
2604
+ */
2605
+ createChangeSet(requestParameters: ChangeSetsApiCreateChangeSetRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateChangeSetV1Response>;
2606
+ /**
2607
+ *
2608
+ * @param {ChangeSetsApiForceApplyRequest} requestParameters Request parameters.
2609
+ * @param {*} [options] Override http request option.
2610
+ * @throws {RequiredError}
2611
+ * @memberof ChangeSetsApiInterface
2612
+ */
2613
+ forceApply(requestParameters: ChangeSetsApiForceApplyRequest, options?: RawAxiosRequestConfig): AxiosPromise<ForceApplyChangeSetV1Response>;
2614
+ /**
2615
+ *
2616
+ * @param {ChangeSetsApiGetChangeSetRequest} requestParameters Request parameters.
2617
+ * @param {*} [options] Override http request option.
2618
+ * @throws {RequiredError}
2619
+ * @memberof ChangeSetsApiInterface
2620
+ */
2621
+ getChangeSet(requestParameters: ChangeSetsApiGetChangeSetRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetChangeSetV1Response>;
2622
+ /**
2623
+ *
2624
+ * @param {ChangeSetsApiListChangeSetsRequest} requestParameters Request parameters.
2625
+ * @param {*} [options] Override http request option.
2626
+ * @throws {RequiredError}
2627
+ * @memberof ChangeSetsApiInterface
2628
+ */
2629
+ listChangeSets(requestParameters: ChangeSetsApiListChangeSetsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListChangeSetV1Response>;
2630
+ /**
2631
+ *
2632
+ * @param {ChangeSetsApiMergeStatusRequest} requestParameters Request parameters.
2633
+ * @param {*} [options] Override http request option.
2634
+ * @throws {RequiredError}
2635
+ * @memberof ChangeSetsApiInterface
2636
+ */
2637
+ mergeStatus(requestParameters: ChangeSetsApiMergeStatusRequest, options?: RawAxiosRequestConfig): AxiosPromise<MergeStatusV1Response>;
2638
+ /**
2639
+ *
2640
+ * @param {ChangeSetsApiPurgeOpenRequest} requestParameters Request parameters.
2641
+ * @param {*} [options] Override http request option.
2642
+ * @throws {RequiredError}
2643
+ * @memberof ChangeSetsApiInterface
2644
+ */
2645
+ purgeOpen(requestParameters: ChangeSetsApiPurgeOpenRequest, options?: RawAxiosRequestConfig): AxiosPromise<PurgeOpenChangeSetsV1Response>;
2646
+ /**
2647
+ *
2648
+ * @param {ChangeSetsApiRequestApprovalRequest} requestParameters Request parameters.
2649
+ * @param {*} [options] Override http request option.
2650
+ * @throws {RequiredError}
2651
+ * @memberof ChangeSetsApiInterface
2652
+ */
2653
+ requestApproval(requestParameters: ChangeSetsApiRequestApprovalRequest, options?: RawAxiosRequestConfig): AxiosPromise<RequestApprovalChangeSetV1Response>;
2654
+ }
2655
+ /**
2656
+ * Request parameters for abandonChangeSet operation in ChangeSetsApi.
2657
+ * @export
2658
+ * @interface ChangeSetsApiAbandonChangeSetRequest
2659
+ */
2660
+ export interface ChangeSetsApiAbandonChangeSetRequest {
2661
+ /**
2662
+ * Workspace identifier
2663
+ * @type {string}
2664
+ * @memberof ChangeSetsApiAbandonChangeSet
2665
+ */
2666
+ readonly workspaceId: string;
2667
+ /**
2668
+ * Change set identifier
2669
+ * @type {string}
2670
+ * @memberof ChangeSetsApiAbandonChangeSet
2671
+ */
2672
+ readonly changeSetId: string;
2673
+ }
2674
+ /**
2675
+ * Request parameters for createChangeSet operation in ChangeSetsApi.
2676
+ * @export
2677
+ * @interface ChangeSetsApiCreateChangeSetRequest
2678
+ */
2679
+ export interface ChangeSetsApiCreateChangeSetRequest {
2680
+ /**
2681
+ * Workspace identifier
2682
+ * @type {string}
2683
+ * @memberof ChangeSetsApiCreateChangeSet
2684
+ */
2685
+ readonly workspaceId: string;
2686
+ /**
2687
+ *
2688
+ * @type {CreateChangeSetV1Request}
2689
+ * @memberof ChangeSetsApiCreateChangeSet
2690
+ */
2691
+ readonly createChangeSetV1Request: CreateChangeSetV1Request;
2692
+ }
2693
+ /**
2694
+ * Request parameters for forceApply operation in ChangeSetsApi.
2695
+ * @export
2696
+ * @interface ChangeSetsApiForceApplyRequest
2697
+ */
2698
+ export interface ChangeSetsApiForceApplyRequest {
2699
+ /**
2700
+ * Workspace identifier
2701
+ * @type {string}
2702
+ * @memberof ChangeSetsApiForceApply
2703
+ */
2704
+ readonly workspaceId: string;
2705
+ /**
2706
+ * Change set identifier
2707
+ * @type {string}
2708
+ * @memberof ChangeSetsApiForceApply
2709
+ */
2710
+ readonly changeSetId: string;
2711
+ }
2712
+ /**
2713
+ * Request parameters for getChangeSet operation in ChangeSetsApi.
2714
+ * @export
2715
+ * @interface ChangeSetsApiGetChangeSetRequest
2716
+ */
2717
+ export interface ChangeSetsApiGetChangeSetRequest {
2718
+ /**
2719
+ * Workspace identifier
2720
+ * @type {string}
2721
+ * @memberof ChangeSetsApiGetChangeSet
2722
+ */
2723
+ readonly workspaceId: string;
2724
+ /**
2725
+ * Change set identifier
2726
+ * @type {string}
2727
+ * @memberof ChangeSetsApiGetChangeSet
2728
+ */
2729
+ readonly changeSetId: string;
2730
+ }
2731
+ /**
2732
+ * Request parameters for listChangeSets operation in ChangeSetsApi.
2733
+ * @export
2734
+ * @interface ChangeSetsApiListChangeSetsRequest
2735
+ */
2736
+ export interface ChangeSetsApiListChangeSetsRequest {
2737
+ /**
2738
+ * Workspace identifier
2739
+ * @type {string}
2740
+ * @memberof ChangeSetsApiListChangeSets
2741
+ */
2742
+ readonly workspaceId: string;
2743
+ }
2744
+ /**
2745
+ * Request parameters for mergeStatus operation in ChangeSetsApi.
2746
+ * @export
2747
+ * @interface ChangeSetsApiMergeStatusRequest
2748
+ */
2749
+ export interface ChangeSetsApiMergeStatusRequest {
2750
+ /**
2751
+ * Workspace identifier
2752
+ * @type {string}
2753
+ * @memberof ChangeSetsApiMergeStatus
2754
+ */
2755
+ readonly workspaceId: string;
2756
+ /**
2757
+ * Change set identifier
2758
+ * @type {string}
2759
+ * @memberof ChangeSetsApiMergeStatus
2760
+ */
2761
+ readonly changeSetId: string;
2762
+ }
2763
+ /**
2764
+ * Request parameters for purgeOpen operation in ChangeSetsApi.
2765
+ * @export
2766
+ * @interface ChangeSetsApiPurgeOpenRequest
2767
+ */
2768
+ export interface ChangeSetsApiPurgeOpenRequest {
2769
+ /**
2770
+ * Workspace identifier
2771
+ * @type {string}
2772
+ * @memberof ChangeSetsApiPurgeOpen
2773
+ */
2774
+ readonly workspaceId: string;
2775
+ }
2776
+ /**
2777
+ * Request parameters for requestApproval operation in ChangeSetsApi.
2778
+ * @export
2779
+ * @interface ChangeSetsApiRequestApprovalRequest
2780
+ */
2781
+ export interface ChangeSetsApiRequestApprovalRequest {
2782
+ /**
2783
+ * Workspace identifier
2784
+ * @type {string}
2785
+ * @memberof ChangeSetsApiRequestApproval
2786
+ */
2787
+ readonly workspaceId: string;
2788
+ /**
2789
+ * Change set identifier
2790
+ * @type {string}
2791
+ * @memberof ChangeSetsApiRequestApproval
2792
+ */
2793
+ readonly changeSetId: string;
2794
+ }
2795
+ /**
2796
+ * ChangeSetsApi - object-oriented interface
2797
+ * @export
2798
+ * @class ChangeSetsApi
2799
+ * @extends {BaseAPI}
2800
+ */
2801
+ export declare class ChangeSetsApi extends BaseAPI implements ChangeSetsApiInterface {
2802
+ /**
2803
+ *
2804
+ * @param {ChangeSetsApiAbandonChangeSetRequest} requestParameters Request parameters.
2805
+ * @param {*} [options] Override http request option.
2806
+ * @throws {RequiredError}
2807
+ * @memberof ChangeSetsApi
2808
+ */
2809
+ abandonChangeSet(requestParameters: ChangeSetsApiAbandonChangeSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteChangeSetV1Response, any>>;
2810
+ /**
2811
+ *
2812
+ * @param {ChangeSetsApiCreateChangeSetRequest} requestParameters Request parameters.
2813
+ * @param {*} [options] Override http request option.
2814
+ * @throws {RequiredError}
2815
+ * @memberof ChangeSetsApi
2816
+ */
2817
+ createChangeSet(requestParameters: ChangeSetsApiCreateChangeSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateChangeSetV1Response, any>>;
2818
+ /**
2819
+ *
2820
+ * @param {ChangeSetsApiForceApplyRequest} requestParameters Request parameters.
2821
+ * @param {*} [options] Override http request option.
2822
+ * @throws {RequiredError}
2823
+ * @memberof ChangeSetsApi
2824
+ */
2825
+ forceApply(requestParameters: ChangeSetsApiForceApplyRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ForceApplyChangeSetV1Response, any>>;
2826
+ /**
2827
+ *
2828
+ * @param {ChangeSetsApiGetChangeSetRequest} requestParameters Request parameters.
2829
+ * @param {*} [options] Override http request option.
2830
+ * @throws {RequiredError}
2831
+ * @memberof ChangeSetsApi
2832
+ */
2833
+ getChangeSet(requestParameters: ChangeSetsApiGetChangeSetRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetChangeSetV1Response, any>>;
2834
+ /**
2835
+ *
2836
+ * @param {ChangeSetsApiListChangeSetsRequest} requestParameters Request parameters.
2837
+ * @param {*} [options] Override http request option.
2838
+ * @throws {RequiredError}
2839
+ * @memberof ChangeSetsApi
2840
+ */
2841
+ listChangeSets(requestParameters: ChangeSetsApiListChangeSetsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListChangeSetV1Response, any>>;
2842
+ /**
2843
+ *
2844
+ * @param {ChangeSetsApiMergeStatusRequest} requestParameters Request parameters.
2845
+ * @param {*} [options] Override http request option.
2846
+ * @throws {RequiredError}
2847
+ * @memberof ChangeSetsApi
2848
+ */
2849
+ mergeStatus(requestParameters: ChangeSetsApiMergeStatusRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MergeStatusV1Response, any>>;
2850
+ /**
2851
+ *
2852
+ * @param {ChangeSetsApiPurgeOpenRequest} requestParameters Request parameters.
2853
+ * @param {*} [options] Override http request option.
2854
+ * @throws {RequiredError}
2855
+ * @memberof ChangeSetsApi
2856
+ */
2857
+ purgeOpen(requestParameters: ChangeSetsApiPurgeOpenRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PurgeOpenChangeSetsV1Response, any>>;
2858
+ /**
2859
+ *
2860
+ * @param {ChangeSetsApiRequestApprovalRequest} requestParameters Request parameters.
2861
+ * @param {*} [options] Override http request option.
2862
+ * @throws {RequiredError}
2863
+ * @memberof ChangeSetsApi
2864
+ */
2865
+ requestApproval(requestParameters: ChangeSetsApiRequestApprovalRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RequestApprovalChangeSetV1Response, any>>;
2866
+ }
2867
+ /**
2868
+ * ComponentsApi - axios parameter creator
2869
+ * @export
2870
+ */
2871
+ export declare const ComponentsApiAxiosParamCreator: (configuration?: Configuration) => {
2872
+ /**
2873
+ *
2874
+ * @param {string} workspaceId Workspace identifier
2875
+ * @param {string} changeSetId Change set identifier
2876
+ * @param {string} componentId Component identifier
2877
+ * @param {AddActionV1Request} addActionV1Request
2878
+ * @param {*} [options] Override http request option.
2879
+ * @throws {RequiredError}
2880
+ */
2881
+ addAction: (workspaceId: string, changeSetId: string, componentId: string, addActionV1Request: AddActionV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2882
+ /**
2883
+ *
2884
+ * @param {string} workspaceId Workspace identifier
2885
+ * @param {string} changeSetId Change set identifier
2886
+ * @param {CreateComponentV1Request} createComponentV1Request
2887
+ * @param {*} [options] Override http request option.
2888
+ * @throws {RequiredError}
2889
+ */
2890
+ createComponent: (workspaceId: string, changeSetId: string, createComponentV1Request: CreateComponentV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2891
+ /**
2892
+ *
2893
+ * @param {string} workspaceId Workspace identifier
2894
+ * @param {string} changeSetId Change set identifier
2895
+ * @param {string} componentId Component identifier
2896
+ * @param {*} [options] Override http request option.
2897
+ * @throws {RequiredError}
2898
+ */
2899
+ deleteComponent: (workspaceId: string, changeSetId: string, componentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2900
+ /**
2901
+ *
2902
+ * @param {string} workspaceId Workspace identifier
2903
+ * @param {string} changeSetId Change set identifier
2904
+ * @param {string} componentId Component identifier
2905
+ * @param {ExecuteManagementFunctionV1Request} executeManagementFunctionV1Request
2906
+ * @param {*} [options] Override http request option.
2907
+ * @throws {RequiredError}
2908
+ */
2909
+ executeManagementFunction: (workspaceId: string, changeSetId: string, componentId: string, executeManagementFunctionV1Request: ExecuteManagementFunctionV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2910
+ /**
2911
+ *
2912
+ * @param {string} workspaceId Workspace identifier
2913
+ * @param {string} changeSetId Change set identifier
2914
+ * @param {string | null} [component]
2915
+ * @param {string | null} [componentId]
2916
+ * @param {*} [options] Override http request option.
2917
+ * @throws {RequiredError}
2918
+ */
2919
+ findComponent: (workspaceId: string, changeSetId: string, component?: string | null, componentId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2920
+ /**
2921
+ *
2922
+ * @param {string} workspaceId Workspace identifier
2923
+ * @param {string} changeSetId Change set identifier
2924
+ * @param {string} componentId Component identifier
2925
+ * @param {*} [options] Override http request option.
2926
+ * @throws {RequiredError}
2927
+ */
2928
+ getComponent: (workspaceId: string, changeSetId: string, componentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2929
+ /**
2930
+ *
2931
+ * @param {string} workspaceId Workspace identifier
2932
+ * @param {string} changeSetId Change set identifier
2933
+ * @param {string} [limit] Maximum number of results to return (default: 50, max: 300)
2934
+ * @param {string} [cursor] Cursor for pagination (ComponentId of the last item from previous page)
2935
+ * @param {*} [options] Override http request option.
2936
+ * @throws {RequiredError}
2937
+ */
2938
+ listComponents: (workspaceId: string, changeSetId: string, limit?: string, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2939
+ /**
2940
+ *
2941
+ * @param {string} workspaceId Workspace identifier
2942
+ * @param {string} changeSetId Change set identifier
2943
+ * @param {string} componentId Component identifier
2944
+ * @param {UpdateComponentV1Request} updateComponentV1Request
2945
+ * @param {*} [options] Override http request option.
2946
+ * @throws {RequiredError}
2947
+ */
2948
+ updateComponent: (workspaceId: string, changeSetId: string, componentId: string, updateComponentV1Request: UpdateComponentV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2949
+ };
2950
+ /**
2951
+ * ComponentsApi - functional programming interface
2952
+ * @export
2953
+ */
2954
+ export declare const ComponentsApiFp: (configuration?: Configuration) => {
2955
+ /**
2956
+ *
2957
+ * @param {string} workspaceId Workspace identifier
2958
+ * @param {string} changeSetId Change set identifier
2959
+ * @param {string} componentId Component identifier
2960
+ * @param {AddActionV1Request} addActionV1Request
2961
+ * @param {*} [options] Override http request option.
2962
+ * @throws {RequiredError}
2963
+ */
2964
+ addAction(workspaceId: string, changeSetId: string, componentId: string, addActionV1Request: AddActionV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AddActionV1Response>>;
2965
+ /**
2966
+ *
2967
+ * @param {string} workspaceId Workspace identifier
2968
+ * @param {string} changeSetId Change set identifier
2969
+ * @param {CreateComponentV1Request} createComponentV1Request
2970
+ * @param {*} [options] Override http request option.
2971
+ * @throws {RequiredError}
2972
+ */
2973
+ createComponent(workspaceId: string, changeSetId: string, createComponentV1Request: CreateComponentV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateComponentV1Response>>;
2974
+ /**
2975
+ *
2976
+ * @param {string} workspaceId Workspace identifier
2977
+ * @param {string} changeSetId Change set identifier
2978
+ * @param {string} componentId Component identifier
2979
+ * @param {*} [options] Override http request option.
2980
+ * @throws {RequiredError}
2981
+ */
2982
+ deleteComponent(workspaceId: string, changeSetId: string, componentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteComponentV1Response>>;
2983
+ /**
2984
+ *
2985
+ * @param {string} workspaceId Workspace identifier
2986
+ * @param {string} changeSetId Change set identifier
2987
+ * @param {string} componentId Component identifier
2988
+ * @param {ExecuteManagementFunctionV1Request} executeManagementFunctionV1Request
2989
+ * @param {*} [options] Override http request option.
2990
+ * @throws {RequiredError}
2991
+ */
2992
+ executeManagementFunction(workspaceId: string, changeSetId: string, componentId: string, executeManagementFunctionV1Request: ExecuteManagementFunctionV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ExecuteManagementFunctionV1Response>>;
2993
+ /**
2994
+ *
2995
+ * @param {string} workspaceId Workspace identifier
2996
+ * @param {string} changeSetId Change set identifier
2997
+ * @param {string | null} [component]
2998
+ * @param {string | null} [componentId]
2999
+ * @param {*} [options] Override http request option.
3000
+ * @throws {RequiredError}
3001
+ */
3002
+ findComponent(workspaceId: string, changeSetId: string, component?: string | null, componentId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetComponentV1Response>>;
3003
+ /**
3004
+ *
3005
+ * @param {string} workspaceId Workspace identifier
3006
+ * @param {string} changeSetId Change set identifier
3007
+ * @param {string} componentId Component identifier
3008
+ * @param {*} [options] Override http request option.
3009
+ * @throws {RequiredError}
3010
+ */
3011
+ getComponent(workspaceId: string, changeSetId: string, componentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetComponentV1Response>>;
3012
+ /**
3013
+ *
3014
+ * @param {string} workspaceId Workspace identifier
3015
+ * @param {string} changeSetId Change set identifier
3016
+ * @param {string} [limit] Maximum number of results to return (default: 50, max: 300)
3017
+ * @param {string} [cursor] Cursor for pagination (ComponentId of the last item from previous page)
3018
+ * @param {*} [options] Override http request option.
3019
+ * @throws {RequiredError}
3020
+ */
3021
+ listComponents(workspaceId: string, changeSetId: string, limit?: string, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListComponentsV1Response>>;
3022
+ /**
3023
+ *
3024
+ * @param {string} workspaceId Workspace identifier
3025
+ * @param {string} changeSetId Change set identifier
3026
+ * @param {string} componentId Component identifier
3027
+ * @param {UpdateComponentV1Request} updateComponentV1Request
3028
+ * @param {*} [options] Override http request option.
3029
+ * @throws {RequiredError}
3030
+ */
3031
+ updateComponent(workspaceId: string, changeSetId: string, componentId: string, updateComponentV1Request: UpdateComponentV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateComponentV1Response>>;
3032
+ };
3033
+ /**
3034
+ * ComponentsApi - factory interface
3035
+ * @export
3036
+ */
3037
+ export declare const ComponentsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3038
+ /**
3039
+ *
3040
+ * @param {ComponentsApiAddActionRequest} requestParameters Request parameters.
3041
+ * @param {*} [options] Override http request option.
3042
+ * @throws {RequiredError}
3043
+ */
3044
+ addAction(requestParameters: ComponentsApiAddActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddActionV1Response>;
3045
+ /**
3046
+ *
3047
+ * @param {ComponentsApiCreateComponentRequest} requestParameters Request parameters.
3048
+ * @param {*} [options] Override http request option.
3049
+ * @throws {RequiredError}
3050
+ */
3051
+ createComponent(requestParameters: ComponentsApiCreateComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateComponentV1Response>;
3052
+ /**
3053
+ *
3054
+ * @param {ComponentsApiDeleteComponentRequest} requestParameters Request parameters.
3055
+ * @param {*} [options] Override http request option.
3056
+ * @throws {RequiredError}
3057
+ */
3058
+ deleteComponent(requestParameters: ComponentsApiDeleteComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<DeleteComponentV1Response>;
3059
+ /**
3060
+ *
3061
+ * @param {ComponentsApiExecuteManagementFunctionRequest} requestParameters Request parameters.
3062
+ * @param {*} [options] Override http request option.
3063
+ * @throws {RequiredError}
3064
+ */
3065
+ executeManagementFunction(requestParameters: ComponentsApiExecuteManagementFunctionRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteManagementFunctionV1Response>;
3066
+ /**
3067
+ *
3068
+ * @param {ComponentsApiFindComponentRequest} requestParameters Request parameters.
3069
+ * @param {*} [options] Override http request option.
3070
+ * @throws {RequiredError}
3071
+ */
3072
+ findComponent(requestParameters: ComponentsApiFindComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetComponentV1Response>;
3073
+ /**
3074
+ *
3075
+ * @param {ComponentsApiGetComponentRequest} requestParameters Request parameters.
3076
+ * @param {*} [options] Override http request option.
3077
+ * @throws {RequiredError}
3078
+ */
3079
+ getComponent(requestParameters: ComponentsApiGetComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetComponentV1Response>;
3080
+ /**
3081
+ *
3082
+ * @param {ComponentsApiListComponentsRequest} requestParameters Request parameters.
3083
+ * @param {*} [options] Override http request option.
3084
+ * @throws {RequiredError}
3085
+ */
3086
+ listComponents(requestParameters: ComponentsApiListComponentsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListComponentsV1Response>;
3087
+ /**
3088
+ *
3089
+ * @param {ComponentsApiUpdateComponentRequest} requestParameters Request parameters.
3090
+ * @param {*} [options] Override http request option.
3091
+ * @throws {RequiredError}
3092
+ */
3093
+ updateComponent(requestParameters: ComponentsApiUpdateComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateComponentV1Response>;
3094
+ };
3095
+ /**
3096
+ * ComponentsApi - interface
3097
+ * @export
3098
+ * @interface ComponentsApi
3099
+ */
3100
+ export interface ComponentsApiInterface {
3101
+ /**
3102
+ *
3103
+ * @param {ComponentsApiAddActionRequest} requestParameters Request parameters.
3104
+ * @param {*} [options] Override http request option.
3105
+ * @throws {RequiredError}
3106
+ * @memberof ComponentsApiInterface
3107
+ */
3108
+ addAction(requestParameters: ComponentsApiAddActionRequest, options?: RawAxiosRequestConfig): AxiosPromise<AddActionV1Response>;
3109
+ /**
3110
+ *
3111
+ * @param {ComponentsApiCreateComponentRequest} requestParameters Request parameters.
3112
+ * @param {*} [options] Override http request option.
3113
+ * @throws {RequiredError}
3114
+ * @memberof ComponentsApiInterface
3115
+ */
3116
+ createComponent(requestParameters: ComponentsApiCreateComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateComponentV1Response>;
3117
+ /**
3118
+ *
3119
+ * @param {ComponentsApiDeleteComponentRequest} requestParameters Request parameters.
3120
+ * @param {*} [options] Override http request option.
3121
+ * @throws {RequiredError}
3122
+ * @memberof ComponentsApiInterface
3123
+ */
3124
+ deleteComponent(requestParameters: ComponentsApiDeleteComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<DeleteComponentV1Response>;
3125
+ /**
3126
+ *
3127
+ * @param {ComponentsApiExecuteManagementFunctionRequest} requestParameters Request parameters.
3128
+ * @param {*} [options] Override http request option.
3129
+ * @throws {RequiredError}
3130
+ * @memberof ComponentsApiInterface
3131
+ */
3132
+ executeManagementFunction(requestParameters: ComponentsApiExecuteManagementFunctionRequest, options?: RawAxiosRequestConfig): AxiosPromise<ExecuteManagementFunctionV1Response>;
3133
+ /**
3134
+ *
3135
+ * @param {ComponentsApiFindComponentRequest} requestParameters Request parameters.
3136
+ * @param {*} [options] Override http request option.
3137
+ * @throws {RequiredError}
3138
+ * @memberof ComponentsApiInterface
3139
+ */
3140
+ findComponent(requestParameters: ComponentsApiFindComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetComponentV1Response>;
3141
+ /**
3142
+ *
3143
+ * @param {ComponentsApiGetComponentRequest} requestParameters Request parameters.
3144
+ * @param {*} [options] Override http request option.
3145
+ * @throws {RequiredError}
3146
+ * @memberof ComponentsApiInterface
3147
+ */
3148
+ getComponent(requestParameters: ComponentsApiGetComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetComponentV1Response>;
3149
+ /**
3150
+ *
3151
+ * @param {ComponentsApiListComponentsRequest} requestParameters Request parameters.
3152
+ * @param {*} [options] Override http request option.
3153
+ * @throws {RequiredError}
3154
+ * @memberof ComponentsApiInterface
3155
+ */
3156
+ listComponents(requestParameters: ComponentsApiListComponentsRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListComponentsV1Response>;
3157
+ /**
3158
+ *
3159
+ * @param {ComponentsApiUpdateComponentRequest} requestParameters Request parameters.
3160
+ * @param {*} [options] Override http request option.
3161
+ * @throws {RequiredError}
3162
+ * @memberof ComponentsApiInterface
3163
+ */
3164
+ updateComponent(requestParameters: ComponentsApiUpdateComponentRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateComponentV1Response>;
3165
+ }
3166
+ /**
3167
+ * Request parameters for addAction operation in ComponentsApi.
3168
+ * @export
3169
+ * @interface ComponentsApiAddActionRequest
3170
+ */
3171
+ export interface ComponentsApiAddActionRequest {
3172
+ /**
3173
+ * Workspace identifier
3174
+ * @type {string}
3175
+ * @memberof ComponentsApiAddAction
3176
+ */
3177
+ readonly workspaceId: string;
3178
+ /**
3179
+ * Change set identifier
3180
+ * @type {string}
3181
+ * @memberof ComponentsApiAddAction
3182
+ */
3183
+ readonly changeSetId: string;
3184
+ /**
3185
+ * Component identifier
3186
+ * @type {string}
3187
+ * @memberof ComponentsApiAddAction
3188
+ */
3189
+ readonly componentId: string;
3190
+ /**
3191
+ *
3192
+ * @type {AddActionV1Request}
3193
+ * @memberof ComponentsApiAddAction
3194
+ */
3195
+ readonly addActionV1Request: AddActionV1Request;
3196
+ }
3197
+ /**
3198
+ * Request parameters for createComponent operation in ComponentsApi.
3199
+ * @export
3200
+ * @interface ComponentsApiCreateComponentRequest
3201
+ */
3202
+ export interface ComponentsApiCreateComponentRequest {
3203
+ /**
3204
+ * Workspace identifier
3205
+ * @type {string}
3206
+ * @memberof ComponentsApiCreateComponent
3207
+ */
3208
+ readonly workspaceId: string;
3209
+ /**
3210
+ * Change set identifier
3211
+ * @type {string}
3212
+ * @memberof ComponentsApiCreateComponent
3213
+ */
3214
+ readonly changeSetId: string;
3215
+ /**
3216
+ *
3217
+ * @type {CreateComponentV1Request}
3218
+ * @memberof ComponentsApiCreateComponent
3219
+ */
3220
+ readonly createComponentV1Request: CreateComponentV1Request;
3221
+ }
3222
+ /**
3223
+ * Request parameters for deleteComponent operation in ComponentsApi.
3224
+ * @export
3225
+ * @interface ComponentsApiDeleteComponentRequest
3226
+ */
3227
+ export interface ComponentsApiDeleteComponentRequest {
3228
+ /**
3229
+ * Workspace identifier
3230
+ * @type {string}
3231
+ * @memberof ComponentsApiDeleteComponent
3232
+ */
3233
+ readonly workspaceId: string;
3234
+ /**
3235
+ * Change set identifier
3236
+ * @type {string}
3237
+ * @memberof ComponentsApiDeleteComponent
3238
+ */
3239
+ readonly changeSetId: string;
3240
+ /**
3241
+ * Component identifier
3242
+ * @type {string}
3243
+ * @memberof ComponentsApiDeleteComponent
3244
+ */
3245
+ readonly componentId: string;
3246
+ }
3247
+ /**
3248
+ * Request parameters for executeManagementFunction operation in ComponentsApi.
3249
+ * @export
3250
+ * @interface ComponentsApiExecuteManagementFunctionRequest
3251
+ */
3252
+ export interface ComponentsApiExecuteManagementFunctionRequest {
3253
+ /**
3254
+ * Workspace identifier
3255
+ * @type {string}
3256
+ * @memberof ComponentsApiExecuteManagementFunction
3257
+ */
3258
+ readonly workspaceId: string;
3259
+ /**
3260
+ * Change set identifier
3261
+ * @type {string}
3262
+ * @memberof ComponentsApiExecuteManagementFunction
3263
+ */
3264
+ readonly changeSetId: string;
3265
+ /**
3266
+ * Component identifier
3267
+ * @type {string}
3268
+ * @memberof ComponentsApiExecuteManagementFunction
3269
+ */
3270
+ readonly componentId: string;
3271
+ /**
3272
+ *
3273
+ * @type {ExecuteManagementFunctionV1Request}
3274
+ * @memberof ComponentsApiExecuteManagementFunction
3275
+ */
3276
+ readonly executeManagementFunctionV1Request: ExecuteManagementFunctionV1Request;
3277
+ }
3278
+ /**
3279
+ * Request parameters for findComponent operation in ComponentsApi.
3280
+ * @export
3281
+ * @interface ComponentsApiFindComponentRequest
3282
+ */
3283
+ export interface ComponentsApiFindComponentRequest {
3284
+ /**
3285
+ * Workspace identifier
3286
+ * @type {string}
3287
+ * @memberof ComponentsApiFindComponent
3288
+ */
3289
+ readonly workspaceId: string;
3290
+ /**
3291
+ * Change set identifier
3292
+ * @type {string}
3293
+ * @memberof ComponentsApiFindComponent
3294
+ */
3295
+ readonly changeSetId: string;
3296
+ /**
3297
+ *
3298
+ * @type {string}
3299
+ * @memberof ComponentsApiFindComponent
3300
+ */
3301
+ readonly component?: string | null;
3302
+ /**
3303
+ *
3304
+ * @type {string}
3305
+ * @memberof ComponentsApiFindComponent
3306
+ */
3307
+ readonly componentId?: string | null;
3308
+ }
3309
+ /**
3310
+ * Request parameters for getComponent operation in ComponentsApi.
3311
+ * @export
3312
+ * @interface ComponentsApiGetComponentRequest
3313
+ */
3314
+ export interface ComponentsApiGetComponentRequest {
3315
+ /**
3316
+ * Workspace identifier
3317
+ * @type {string}
3318
+ * @memberof ComponentsApiGetComponent
3319
+ */
3320
+ readonly workspaceId: string;
3321
+ /**
3322
+ * Change set identifier
3323
+ * @type {string}
3324
+ * @memberof ComponentsApiGetComponent
3325
+ */
3326
+ readonly changeSetId: string;
3327
+ /**
3328
+ * Component identifier
3329
+ * @type {string}
3330
+ * @memberof ComponentsApiGetComponent
3331
+ */
3332
+ readonly componentId: string;
3333
+ }
3334
+ /**
3335
+ * Request parameters for listComponents operation in ComponentsApi.
3336
+ * @export
3337
+ * @interface ComponentsApiListComponentsRequest
3338
+ */
3339
+ export interface ComponentsApiListComponentsRequest {
3340
+ /**
3341
+ * Workspace identifier
3342
+ * @type {string}
3343
+ * @memberof ComponentsApiListComponents
3344
+ */
3345
+ readonly workspaceId: string;
3346
+ /**
3347
+ * Change set identifier
3348
+ * @type {string}
3349
+ * @memberof ComponentsApiListComponents
3350
+ */
3351
+ readonly changeSetId: string;
3352
+ /**
3353
+ * Maximum number of results to return (default: 50, max: 300)
3354
+ * @type {string}
3355
+ * @memberof ComponentsApiListComponents
3356
+ */
3357
+ readonly limit?: string;
3358
+ /**
3359
+ * Cursor for pagination (ComponentId of the last item from previous page)
3360
+ * @type {string}
3361
+ * @memberof ComponentsApiListComponents
3362
+ */
3363
+ readonly cursor?: string;
3364
+ }
3365
+ /**
3366
+ * Request parameters for updateComponent operation in ComponentsApi.
3367
+ * @export
3368
+ * @interface ComponentsApiUpdateComponentRequest
3369
+ */
3370
+ export interface ComponentsApiUpdateComponentRequest {
3371
+ /**
3372
+ * Workspace identifier
3373
+ * @type {string}
3374
+ * @memberof ComponentsApiUpdateComponent
3375
+ */
3376
+ readonly workspaceId: string;
3377
+ /**
3378
+ * Change set identifier
3379
+ * @type {string}
3380
+ * @memberof ComponentsApiUpdateComponent
3381
+ */
3382
+ readonly changeSetId: string;
3383
+ /**
3384
+ * Component identifier
3385
+ * @type {string}
3386
+ * @memberof ComponentsApiUpdateComponent
3387
+ */
3388
+ readonly componentId: string;
3389
+ /**
3390
+ *
3391
+ * @type {UpdateComponentV1Request}
3392
+ * @memberof ComponentsApiUpdateComponent
3393
+ */
3394
+ readonly updateComponentV1Request: UpdateComponentV1Request;
3395
+ }
3396
+ /**
3397
+ * ComponentsApi - object-oriented interface
3398
+ * @export
3399
+ * @class ComponentsApi
3400
+ * @extends {BaseAPI}
3401
+ */
3402
+ export declare class ComponentsApi extends BaseAPI implements ComponentsApiInterface {
3403
+ /**
3404
+ *
3405
+ * @param {ComponentsApiAddActionRequest} requestParameters Request parameters.
3406
+ * @param {*} [options] Override http request option.
3407
+ * @throws {RequiredError}
3408
+ * @memberof ComponentsApi
3409
+ */
3410
+ addAction(requestParameters: ComponentsApiAddActionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AddActionV1Response, any>>;
3411
+ /**
3412
+ *
3413
+ * @param {ComponentsApiCreateComponentRequest} requestParameters Request parameters.
3414
+ * @param {*} [options] Override http request option.
3415
+ * @throws {RequiredError}
3416
+ * @memberof ComponentsApi
3417
+ */
3418
+ createComponent(requestParameters: ComponentsApiCreateComponentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateComponentV1Response, any>>;
3419
+ /**
3420
+ *
3421
+ * @param {ComponentsApiDeleteComponentRequest} requestParameters Request parameters.
3422
+ * @param {*} [options] Override http request option.
3423
+ * @throws {RequiredError}
3424
+ * @memberof ComponentsApi
3425
+ */
3426
+ deleteComponent(requestParameters: ComponentsApiDeleteComponentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteComponentV1Response, any>>;
3427
+ /**
3428
+ *
3429
+ * @param {ComponentsApiExecuteManagementFunctionRequest} requestParameters Request parameters.
3430
+ * @param {*} [options] Override http request option.
3431
+ * @throws {RequiredError}
3432
+ * @memberof ComponentsApi
3433
+ */
3434
+ executeManagementFunction(requestParameters: ComponentsApiExecuteManagementFunctionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ExecuteManagementFunctionV1Response, any>>;
3435
+ /**
3436
+ *
3437
+ * @param {ComponentsApiFindComponentRequest} requestParameters Request parameters.
3438
+ * @param {*} [options] Override http request option.
3439
+ * @throws {RequiredError}
3440
+ * @memberof ComponentsApi
3441
+ */
3442
+ findComponent(requestParameters: ComponentsApiFindComponentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetComponentV1Response, any>>;
3443
+ /**
3444
+ *
3445
+ * @param {ComponentsApiGetComponentRequest} requestParameters Request parameters.
3446
+ * @param {*} [options] Override http request option.
3447
+ * @throws {RequiredError}
3448
+ * @memberof ComponentsApi
3449
+ */
3450
+ getComponent(requestParameters: ComponentsApiGetComponentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetComponentV1Response, any>>;
3451
+ /**
3452
+ *
3453
+ * @param {ComponentsApiListComponentsRequest} requestParameters Request parameters.
3454
+ * @param {*} [options] Override http request option.
3455
+ * @throws {RequiredError}
3456
+ * @memberof ComponentsApi
3457
+ */
3458
+ listComponents(requestParameters: ComponentsApiListComponentsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListComponentsV1Response, any>>;
3459
+ /**
3460
+ *
3461
+ * @param {ComponentsApiUpdateComponentRequest} requestParameters Request parameters.
3462
+ * @param {*} [options] Override http request option.
3463
+ * @throws {RequiredError}
3464
+ * @memberof ComponentsApi
3465
+ */
3466
+ updateComponent(requestParameters: ComponentsApiUpdateComponentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateComponentV1Response, any>>;
3467
+ }
3468
+ /**
3469
+ * FuncsApi - axios parameter creator
3470
+ * @export
3471
+ */
3472
+ export declare const FuncsApiAxiosParamCreator: (configuration?: Configuration) => {
3473
+ /**
3474
+ *
3475
+ * @param {string} workspaceId Workspace identifier
3476
+ * @param {string} changeSetId Change set identifier
3477
+ * @param {string} funcId Func identifier
3478
+ * @param {*} [options] Override http request option.
3479
+ * @throws {RequiredError}
3480
+ */
3481
+ getFunc: (workspaceId: string, changeSetId: string, funcId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3482
+ /**
3483
+ *
3484
+ * @param {string} workspaceId Workspace identifier
3485
+ * @param {string} changeSetId Change set identifier
3486
+ * @param {string} funcRunId Func run identifier
3487
+ * @param {*} [options] Override http request option.
3488
+ * @throws {RequiredError}
3489
+ */
3490
+ getFuncRun: (workspaceId: string, changeSetId: string, funcRunId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3491
+ };
3492
+ /**
3493
+ * FuncsApi - functional programming interface
3494
+ * @export
3495
+ */
3496
+ export declare const FuncsApiFp: (configuration?: Configuration) => {
3497
+ /**
3498
+ *
3499
+ * @param {string} workspaceId Workspace identifier
3500
+ * @param {string} changeSetId Change set identifier
3501
+ * @param {string} funcId Func identifier
3502
+ * @param {*} [options] Override http request option.
3503
+ * @throws {RequiredError}
3504
+ */
3505
+ getFunc(workspaceId: string, changeSetId: string, funcId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFuncV1Response>>;
3506
+ /**
3507
+ *
3508
+ * @param {string} workspaceId Workspace identifier
3509
+ * @param {string} changeSetId Change set identifier
3510
+ * @param {string} funcRunId Func run identifier
3511
+ * @param {*} [options] Override http request option.
3512
+ * @throws {RequiredError}
3513
+ */
3514
+ getFuncRun(workspaceId: string, changeSetId: string, funcRunId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetFuncRunV1Response>>;
3515
+ };
3516
+ /**
3517
+ * FuncsApi - factory interface
3518
+ * @export
3519
+ */
3520
+ export declare const FuncsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3521
+ /**
3522
+ *
3523
+ * @param {FuncsApiGetFuncRequest} requestParameters Request parameters.
3524
+ * @param {*} [options] Override http request option.
3525
+ * @throws {RequiredError}
3526
+ */
3527
+ getFunc(requestParameters: FuncsApiGetFuncRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFuncV1Response>;
3528
+ /**
3529
+ *
3530
+ * @param {FuncsApiGetFuncRunRequest} requestParameters Request parameters.
3531
+ * @param {*} [options] Override http request option.
3532
+ * @throws {RequiredError}
3533
+ */
3534
+ getFuncRun(requestParameters: FuncsApiGetFuncRunRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFuncRunV1Response>;
3535
+ };
3536
+ /**
3537
+ * FuncsApi - interface
3538
+ * @export
3539
+ * @interface FuncsApi
3540
+ */
3541
+ export interface FuncsApiInterface {
3542
+ /**
3543
+ *
3544
+ * @param {FuncsApiGetFuncRequest} requestParameters Request parameters.
3545
+ * @param {*} [options] Override http request option.
3546
+ * @throws {RequiredError}
3547
+ * @memberof FuncsApiInterface
3548
+ */
3549
+ getFunc(requestParameters: FuncsApiGetFuncRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFuncV1Response>;
3550
+ /**
3551
+ *
3552
+ * @param {FuncsApiGetFuncRunRequest} requestParameters Request parameters.
3553
+ * @param {*} [options] Override http request option.
3554
+ * @throws {RequiredError}
3555
+ * @memberof FuncsApiInterface
3556
+ */
3557
+ getFuncRun(requestParameters: FuncsApiGetFuncRunRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetFuncRunV1Response>;
3558
+ }
3559
+ /**
3560
+ * Request parameters for getFunc operation in FuncsApi.
3561
+ * @export
3562
+ * @interface FuncsApiGetFuncRequest
3563
+ */
3564
+ export interface FuncsApiGetFuncRequest {
3565
+ /**
3566
+ * Workspace identifier
3567
+ * @type {string}
3568
+ * @memberof FuncsApiGetFunc
3569
+ */
3570
+ readonly workspaceId: string;
3571
+ /**
3572
+ * Change set identifier
3573
+ * @type {string}
3574
+ * @memberof FuncsApiGetFunc
3575
+ */
3576
+ readonly changeSetId: string;
3577
+ /**
3578
+ * Func identifier
3579
+ * @type {string}
3580
+ * @memberof FuncsApiGetFunc
3581
+ */
3582
+ readonly funcId: string;
3583
+ }
3584
+ /**
3585
+ * Request parameters for getFuncRun operation in FuncsApi.
3586
+ * @export
3587
+ * @interface FuncsApiGetFuncRunRequest
3588
+ */
3589
+ export interface FuncsApiGetFuncRunRequest {
3590
+ /**
3591
+ * Workspace identifier
3592
+ * @type {string}
3593
+ * @memberof FuncsApiGetFuncRun
3594
+ */
3595
+ readonly workspaceId: string;
3596
+ /**
3597
+ * Change set identifier
3598
+ * @type {string}
3599
+ * @memberof FuncsApiGetFuncRun
3600
+ */
3601
+ readonly changeSetId: string;
3602
+ /**
3603
+ * Func run identifier
3604
+ * @type {string}
3605
+ * @memberof FuncsApiGetFuncRun
3606
+ */
3607
+ readonly funcRunId: string;
3608
+ }
3609
+ /**
3610
+ * FuncsApi - object-oriented interface
3611
+ * @export
3612
+ * @class FuncsApi
3613
+ * @extends {BaseAPI}
3614
+ */
3615
+ export declare class FuncsApi extends BaseAPI implements FuncsApiInterface {
3616
+ /**
3617
+ *
3618
+ * @param {FuncsApiGetFuncRequest} requestParameters Request parameters.
3619
+ * @param {*} [options] Override http request option.
3620
+ * @throws {RequiredError}
3621
+ * @memberof FuncsApi
3622
+ */
3623
+ getFunc(requestParameters: FuncsApiGetFuncRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetFuncV1Response, any>>;
3624
+ /**
3625
+ *
3626
+ * @param {FuncsApiGetFuncRunRequest} requestParameters Request parameters.
3627
+ * @param {*} [options] Override http request option.
3628
+ * @throws {RequiredError}
3629
+ * @memberof FuncsApi
3630
+ */
3631
+ getFuncRun(requestParameters: FuncsApiGetFuncRunRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetFuncRunV1Response, any>>;
3632
+ }
3633
+ /**
3634
+ * RootApi - axios parameter creator
3635
+ * @export
3636
+ */
3637
+ export declare const RootApiAxiosParamCreator: (configuration?: Configuration) => {
3638
+ /**
3639
+ *
3640
+ * @param {*} [options] Override http request option.
3641
+ * @throws {RequiredError}
3642
+ */
3643
+ systemStatusRoute: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3644
+ };
3645
+ /**
3646
+ * RootApi - functional programming interface
3647
+ * @export
3648
+ */
3649
+ export declare const RootApiFp: (configuration?: Configuration) => {
3650
+ /**
3651
+ *
3652
+ * @param {*} [options] Override http request option.
3653
+ * @throws {RequiredError}
3654
+ */
3655
+ systemStatusRoute(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SystemStatusResponse>>;
3656
+ };
3657
+ /**
3658
+ * RootApi - factory interface
3659
+ * @export
3660
+ */
3661
+ export declare const RootApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3662
+ /**
3663
+ *
3664
+ * @param {*} [options] Override http request option.
3665
+ * @throws {RequiredError}
3666
+ */
3667
+ systemStatusRoute(options?: RawAxiosRequestConfig): AxiosPromise<SystemStatusResponse>;
3668
+ };
3669
+ /**
3670
+ * RootApi - interface
3671
+ * @export
3672
+ * @interface RootApi
3673
+ */
3674
+ export interface RootApiInterface {
3675
+ /**
3676
+ *
3677
+ * @param {*} [options] Override http request option.
3678
+ * @throws {RequiredError}
3679
+ * @memberof RootApiInterface
3680
+ */
3681
+ systemStatusRoute(options?: RawAxiosRequestConfig): AxiosPromise<SystemStatusResponse>;
3682
+ }
3683
+ /**
3684
+ * RootApi - object-oriented interface
3685
+ * @export
3686
+ * @class RootApi
3687
+ * @extends {BaseAPI}
3688
+ */
3689
+ export declare class RootApi extends BaseAPI implements RootApiInterface {
3690
+ /**
3691
+ *
3692
+ * @param {*} [options] Override http request option.
3693
+ * @throws {RequiredError}
3694
+ * @memberof RootApi
3695
+ */
3696
+ systemStatusRoute(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SystemStatusResponse, any>>;
3697
+ }
3698
+ /**
3699
+ * SchemasApi - axios parameter creator
3700
+ * @export
3701
+ */
3702
+ export declare const SchemasApiAxiosParamCreator: (configuration?: Configuration) => {
3703
+ /**
3704
+ *
3705
+ * @param {string} workspaceId Workspace identifier
3706
+ * @param {string} changeSetId Change set identifier
3707
+ * @param {string | null} [schema]
3708
+ * @param {string | null} [schemaId]
3709
+ * @param {*} [options] Override http request option.
3710
+ * @throws {RequiredError}
3711
+ */
3712
+ findSchema: (workspaceId: string, changeSetId: string, schema?: string | null, schemaId?: string | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3713
+ /**
3714
+ *
3715
+ * @param {string} workspaceId Workspace identifier
3716
+ * @param {string} changeSetId Change set identifier
3717
+ * @param {string} schemaId Schema identifier
3718
+ * @param {string} schemaVariantId Schema variant identifier
3719
+ * @param {*} [options] Override http request option.
3720
+ * @throws {RequiredError}
3721
+ */
3722
+ getDefaultVariant: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3723
+ /**
3724
+ *
3725
+ * @param {string} workspaceId Workspace identifier
3726
+ * @param {string} changeSetId Change set identifier
3727
+ * @param {string} schemaId Schema identifier
3728
+ * @param {*} [options] Override http request option.
3729
+ * @throws {RequiredError}
3730
+ */
3731
+ getSchema: (workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3732
+ /**
3733
+ *
3734
+ * @param {string} workspaceId Workspace identifier
3735
+ * @param {string} changeSetId Change set identifier
3736
+ * @param {string} schemaId Schema identifier
3737
+ * @param {string} schemaVariantId Schema variant identifier
3738
+ * @param {*} [options] Override http request option.
3739
+ * @throws {RequiredError}
3740
+ */
3741
+ getVariant: (workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3742
+ /**
3743
+ *
3744
+ * @param {string} workspaceId Workspace identifier
3745
+ * @param {string} changeSetId Change set identifier
3746
+ * @param {string} [limit] Maximum number of results to return (default: 50, max: 300)
3747
+ * @param {string} [cursor] Cursor for pagination (SchemaId of the last item from previous page)
3748
+ * @param {*} [options] Override http request option.
3749
+ * @throws {RequiredError}
3750
+ */
3751
+ listSchemas: (workspaceId: string, changeSetId: string, limit?: string, cursor?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3752
+ };
3753
+ /**
3754
+ * SchemasApi - functional programming interface
3755
+ * @export
3756
+ */
3757
+ export declare const SchemasApiFp: (configuration?: Configuration) => {
3758
+ /**
3759
+ *
3760
+ * @param {string} workspaceId Workspace identifier
3761
+ * @param {string} changeSetId Change set identifier
3762
+ * @param {string | null} [schema]
3763
+ * @param {string | null} [schemaId]
3764
+ * @param {*} [options] Override http request option.
3765
+ * @throws {RequiredError}
3766
+ */
3767
+ findSchema(workspaceId: string, changeSetId: string, schema?: string | null, schemaId?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FindSchemaV1Response>>;
3768
+ /**
3769
+ *
3770
+ * @param {string} workspaceId Workspace identifier
3771
+ * @param {string} changeSetId Change set identifier
3772
+ * @param {string} schemaId Schema identifier
3773
+ * @param {string} schemaVariantId Schema variant identifier
3774
+ * @param {*} [options] Override http request option.
3775
+ * @throws {RequiredError}
3776
+ */
3777
+ getDefaultVariant(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSchemaVariantV1Response>>;
3778
+ /**
3779
+ *
3780
+ * @param {string} workspaceId Workspace identifier
3781
+ * @param {string} changeSetId Change set identifier
3782
+ * @param {string} schemaId Schema identifier
3783
+ * @param {*} [options] Override http request option.
3784
+ * @throws {RequiredError}
3785
+ */
3786
+ getSchema(workspaceId: string, changeSetId: string, schemaId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSchemaV1Response>>;
3787
+ /**
3788
+ *
3789
+ * @param {string} workspaceId Workspace identifier
3790
+ * @param {string} changeSetId Change set identifier
3791
+ * @param {string} schemaId Schema identifier
3792
+ * @param {string} schemaVariantId Schema variant identifier
3793
+ * @param {*} [options] Override http request option.
3794
+ * @throws {RequiredError}
3795
+ */
3796
+ getVariant(workspaceId: string, changeSetId: string, schemaId: string, schemaVariantId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSchemaVariantV1Response>>;
3797
+ /**
3798
+ *
3799
+ * @param {string} workspaceId Workspace identifier
3800
+ * @param {string} changeSetId Change set identifier
3801
+ * @param {string} [limit] Maximum number of results to return (default: 50, max: 300)
3802
+ * @param {string} [cursor] Cursor for pagination (SchemaId of the last item from previous page)
3803
+ * @param {*} [options] Override http request option.
3804
+ * @throws {RequiredError}
3805
+ */
3806
+ listSchemas(workspaceId: string, changeSetId: string, limit?: string, cursor?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListSchemaV1Response>>;
3807
+ };
3808
+ /**
3809
+ * SchemasApi - factory interface
3810
+ * @export
3811
+ */
3812
+ export declare const SchemasApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
3813
+ /**
3814
+ *
3815
+ * @param {SchemasApiFindSchemaRequest} requestParameters Request parameters.
3816
+ * @param {*} [options] Override http request option.
3817
+ * @throws {RequiredError}
3818
+ */
3819
+ findSchema(requestParameters: SchemasApiFindSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<FindSchemaV1Response>;
3820
+ /**
3821
+ *
3822
+ * @param {SchemasApiGetDefaultVariantRequest} requestParameters Request parameters.
3823
+ * @param {*} [options] Override http request option.
3824
+ * @throws {RequiredError}
3825
+ */
3826
+ getDefaultVariant(requestParameters: SchemasApiGetDefaultVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
3827
+ /**
3828
+ *
3829
+ * @param {SchemasApiGetSchemaRequest} requestParameters Request parameters.
3830
+ * @param {*} [options] Override http request option.
3831
+ * @throws {RequiredError}
3832
+ */
3833
+ getSchema(requestParameters: SchemasApiGetSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaV1Response>;
3834
+ /**
3835
+ *
3836
+ * @param {SchemasApiGetVariantRequest} requestParameters Request parameters.
3837
+ * @param {*} [options] Override http request option.
3838
+ * @throws {RequiredError}
3839
+ */
3840
+ getVariant(requestParameters: SchemasApiGetVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
3841
+ /**
3842
+ *
3843
+ * @param {SchemasApiListSchemasRequest} requestParameters Request parameters.
3844
+ * @param {*} [options] Override http request option.
3845
+ * @throws {RequiredError}
3846
+ */
3847
+ listSchemas(requestParameters: SchemasApiListSchemasRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListSchemaV1Response>;
3848
+ };
3849
+ /**
3850
+ * SchemasApi - interface
3851
+ * @export
3852
+ * @interface SchemasApi
3853
+ */
3854
+ export interface SchemasApiInterface {
3855
+ /**
3856
+ *
3857
+ * @param {SchemasApiFindSchemaRequest} requestParameters Request parameters.
3858
+ * @param {*} [options] Override http request option.
3859
+ * @throws {RequiredError}
3860
+ * @memberof SchemasApiInterface
3861
+ */
3862
+ findSchema(requestParameters: SchemasApiFindSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<FindSchemaV1Response>;
3863
+ /**
3864
+ *
3865
+ * @param {SchemasApiGetDefaultVariantRequest} requestParameters Request parameters.
3866
+ * @param {*} [options] Override http request option.
3867
+ * @throws {RequiredError}
3868
+ * @memberof SchemasApiInterface
3869
+ */
3870
+ getDefaultVariant(requestParameters: SchemasApiGetDefaultVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
3871
+ /**
3872
+ *
3873
+ * @param {SchemasApiGetSchemaRequest} requestParameters Request parameters.
3874
+ * @param {*} [options] Override http request option.
3875
+ * @throws {RequiredError}
3876
+ * @memberof SchemasApiInterface
3877
+ */
3878
+ getSchema(requestParameters: SchemasApiGetSchemaRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaV1Response>;
3879
+ /**
3880
+ *
3881
+ * @param {SchemasApiGetVariantRequest} requestParameters Request parameters.
3882
+ * @param {*} [options] Override http request option.
3883
+ * @throws {RequiredError}
3884
+ * @memberof SchemasApiInterface
3885
+ */
3886
+ getVariant(requestParameters: SchemasApiGetVariantRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSchemaVariantV1Response>;
3887
+ /**
3888
+ *
3889
+ * @param {SchemasApiListSchemasRequest} requestParameters Request parameters.
3890
+ * @param {*} [options] Override http request option.
3891
+ * @throws {RequiredError}
3892
+ * @memberof SchemasApiInterface
3893
+ */
3894
+ listSchemas(requestParameters: SchemasApiListSchemasRequest, options?: RawAxiosRequestConfig): AxiosPromise<ListSchemaV1Response>;
3895
+ }
3896
+ /**
3897
+ * Request parameters for findSchema operation in SchemasApi.
3898
+ * @export
3899
+ * @interface SchemasApiFindSchemaRequest
3900
+ */
3901
+ export interface SchemasApiFindSchemaRequest {
3902
+ /**
3903
+ * Workspace identifier
3904
+ * @type {string}
3905
+ * @memberof SchemasApiFindSchema
3906
+ */
3907
+ readonly workspaceId: string;
3908
+ /**
3909
+ * Change set identifier
3910
+ * @type {string}
3911
+ * @memberof SchemasApiFindSchema
3912
+ */
3913
+ readonly changeSetId: string;
3914
+ /**
3915
+ *
3916
+ * @type {string}
3917
+ * @memberof SchemasApiFindSchema
3918
+ */
3919
+ readonly schema?: string | null;
3920
+ /**
3921
+ *
3922
+ * @type {string}
3923
+ * @memberof SchemasApiFindSchema
3924
+ */
3925
+ readonly schemaId?: string | null;
3926
+ }
3927
+ /**
3928
+ * Request parameters for getDefaultVariant operation in SchemasApi.
3929
+ * @export
3930
+ * @interface SchemasApiGetDefaultVariantRequest
3931
+ */
3932
+ export interface SchemasApiGetDefaultVariantRequest {
3933
+ /**
3934
+ * Workspace identifier
3935
+ * @type {string}
3936
+ * @memberof SchemasApiGetDefaultVariant
3937
+ */
3938
+ readonly workspaceId: string;
3939
+ /**
3940
+ * Change set identifier
3941
+ * @type {string}
3942
+ * @memberof SchemasApiGetDefaultVariant
3943
+ */
3944
+ readonly changeSetId: string;
3945
+ /**
3946
+ * Schema identifier
3947
+ * @type {string}
3948
+ * @memberof SchemasApiGetDefaultVariant
3949
+ */
3950
+ readonly schemaId: string;
3951
+ /**
3952
+ * Schema variant identifier
3953
+ * @type {string}
3954
+ * @memberof SchemasApiGetDefaultVariant
3955
+ */
3956
+ readonly schemaVariantId: string;
3957
+ }
3958
+ /**
3959
+ * Request parameters for getSchema operation in SchemasApi.
3960
+ * @export
3961
+ * @interface SchemasApiGetSchemaRequest
3962
+ */
3963
+ export interface SchemasApiGetSchemaRequest {
3964
+ /**
3965
+ * Workspace identifier
3966
+ * @type {string}
3967
+ * @memberof SchemasApiGetSchema
3968
+ */
3969
+ readonly workspaceId: string;
3970
+ /**
3971
+ * Change set identifier
3972
+ * @type {string}
3973
+ * @memberof SchemasApiGetSchema
3974
+ */
3975
+ readonly changeSetId: string;
3976
+ /**
3977
+ * Schema identifier
3978
+ * @type {string}
3979
+ * @memberof SchemasApiGetSchema
3980
+ */
3981
+ readonly schemaId: string;
3982
+ }
3983
+ /**
3984
+ * Request parameters for getVariant operation in SchemasApi.
3985
+ * @export
3986
+ * @interface SchemasApiGetVariantRequest
3987
+ */
3988
+ export interface SchemasApiGetVariantRequest {
3989
+ /**
3990
+ * Workspace identifier
3991
+ * @type {string}
3992
+ * @memberof SchemasApiGetVariant
3993
+ */
3994
+ readonly workspaceId: string;
3995
+ /**
3996
+ * Change set identifier
3997
+ * @type {string}
3998
+ * @memberof SchemasApiGetVariant
3999
+ */
4000
+ readonly changeSetId: string;
4001
+ /**
4002
+ * Schema identifier
4003
+ * @type {string}
4004
+ * @memberof SchemasApiGetVariant
4005
+ */
4006
+ readonly schemaId: string;
4007
+ /**
4008
+ * Schema variant identifier
4009
+ * @type {string}
4010
+ * @memberof SchemasApiGetVariant
4011
+ */
4012
+ readonly schemaVariantId: string;
4013
+ }
4014
+ /**
4015
+ * Request parameters for listSchemas operation in SchemasApi.
4016
+ * @export
4017
+ * @interface SchemasApiListSchemasRequest
4018
+ */
4019
+ export interface SchemasApiListSchemasRequest {
4020
+ /**
4021
+ * Workspace identifier
4022
+ * @type {string}
4023
+ * @memberof SchemasApiListSchemas
4024
+ */
4025
+ readonly workspaceId: string;
4026
+ /**
4027
+ * Change set identifier
4028
+ * @type {string}
4029
+ * @memberof SchemasApiListSchemas
4030
+ */
4031
+ readonly changeSetId: string;
4032
+ /**
4033
+ * Maximum number of results to return (default: 50, max: 300)
4034
+ * @type {string}
4035
+ * @memberof SchemasApiListSchemas
4036
+ */
4037
+ readonly limit?: string;
4038
+ /**
4039
+ * Cursor for pagination (SchemaId of the last item from previous page)
4040
+ * @type {string}
4041
+ * @memberof SchemasApiListSchemas
4042
+ */
4043
+ readonly cursor?: string;
4044
+ }
4045
+ /**
4046
+ * SchemasApi - object-oriented interface
4047
+ * @export
4048
+ * @class SchemasApi
4049
+ * @extends {BaseAPI}
4050
+ */
4051
+ export declare class SchemasApi extends BaseAPI implements SchemasApiInterface {
4052
+ /**
4053
+ *
4054
+ * @param {SchemasApiFindSchemaRequest} requestParameters Request parameters.
4055
+ * @param {*} [options] Override http request option.
4056
+ * @throws {RequiredError}
4057
+ * @memberof SchemasApi
4058
+ */
4059
+ findSchema(requestParameters: SchemasApiFindSchemaRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<FindSchemaV1Response, any>>;
4060
+ /**
4061
+ *
4062
+ * @param {SchemasApiGetDefaultVariantRequest} requestParameters Request parameters.
4063
+ * @param {*} [options] Override http request option.
4064
+ * @throws {RequiredError}
4065
+ * @memberof SchemasApi
4066
+ */
4067
+ getDefaultVariant(requestParameters: SchemasApiGetDefaultVariantRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetSchemaVariantV1Response, any>>;
4068
+ /**
4069
+ *
4070
+ * @param {SchemasApiGetSchemaRequest} requestParameters Request parameters.
4071
+ * @param {*} [options] Override http request option.
4072
+ * @throws {RequiredError}
4073
+ * @memberof SchemasApi
4074
+ */
4075
+ getSchema(requestParameters: SchemasApiGetSchemaRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetSchemaV1Response, any>>;
4076
+ /**
4077
+ *
4078
+ * @param {SchemasApiGetVariantRequest} requestParameters Request parameters.
4079
+ * @param {*} [options] Override http request option.
4080
+ * @throws {RequiredError}
4081
+ * @memberof SchemasApi
4082
+ */
4083
+ getVariant(requestParameters: SchemasApiGetVariantRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetSchemaVariantV1Response, any>>;
4084
+ /**
4085
+ *
4086
+ * @param {SchemasApiListSchemasRequest} requestParameters Request parameters.
4087
+ * @param {*} [options] Override http request option.
4088
+ * @throws {RequiredError}
4089
+ * @memberof SchemasApi
4090
+ */
4091
+ listSchemas(requestParameters: SchemasApiListSchemasRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ListSchemaV1Response, any>>;
4092
+ }
4093
+ /**
4094
+ * SecretsApi - axios parameter creator
4095
+ * @export
4096
+ */
4097
+ export declare const SecretsApiAxiosParamCreator: (configuration?: Configuration) => {
4098
+ /**
4099
+ *
4100
+ * @param {string} workspaceId Workspace identifier
4101
+ * @param {string} changeSetId Change set identifier
4102
+ * @param {CreateSecretV1Request} createSecretV1Request
4103
+ * @param {*} [options] Override http request option.
4104
+ * @throws {RequiredError}
4105
+ */
4106
+ createSecret: (workspaceId: string, changeSetId: string, createSecretV1Request: CreateSecretV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4107
+ /**
4108
+ *
4109
+ * @param {string} workspaceId Workspace identifier
4110
+ * @param {string} changeSetId Change set identifier
4111
+ * @param {string} secretId Secret identifier
4112
+ * @param {*} [options] Override http request option.
4113
+ * @throws {RequiredError}
4114
+ */
4115
+ deleteSecret: (workspaceId: string, changeSetId: string, secretId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4116
+ /**
4117
+ *
4118
+ * @param {string} workspaceId Workspace identifier
4119
+ * @param {string} changeSetId Change set identifier
4120
+ * @param {*} [options] Override http request option.
4121
+ * @throws {RequiredError}
4122
+ */
4123
+ getSecrets: (workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4124
+ /**
4125
+ *
4126
+ * @param {string} workspaceId Workspace identifier
4127
+ * @param {string} changeSetId Change set identifier
4128
+ * @param {string} secretId Secret identifier
4129
+ * @param {UpdateSecretV1Request} updateSecretV1Request
4130
+ * @param {*} [options] Override http request option.
4131
+ * @throws {RequiredError}
4132
+ */
4133
+ updateSecret: (workspaceId: string, changeSetId: string, secretId: string, updateSecretV1Request: UpdateSecretV1Request, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4134
+ };
4135
+ /**
4136
+ * SecretsApi - functional programming interface
4137
+ * @export
4138
+ */
4139
+ export declare const SecretsApiFp: (configuration?: Configuration) => {
4140
+ /**
4141
+ *
4142
+ * @param {string} workspaceId Workspace identifier
4143
+ * @param {string} changeSetId Change set identifier
4144
+ * @param {CreateSecretV1Request} createSecretV1Request
4145
+ * @param {*} [options] Override http request option.
4146
+ * @throws {RequiredError}
4147
+ */
4148
+ createSecret(workspaceId: string, changeSetId: string, createSecretV1Request: CreateSecretV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateSecretV1Response>>;
4149
+ /**
4150
+ *
4151
+ * @param {string} workspaceId Workspace identifier
4152
+ * @param {string} changeSetId Change set identifier
4153
+ * @param {string} secretId Secret identifier
4154
+ * @param {*} [options] Override http request option.
4155
+ * @throws {RequiredError}
4156
+ */
4157
+ deleteSecret(workspaceId: string, changeSetId: string, secretId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DeleteSecretV1Response>>;
4158
+ /**
4159
+ *
4160
+ * @param {string} workspaceId Workspace identifier
4161
+ * @param {string} changeSetId Change set identifier
4162
+ * @param {*} [options] Override http request option.
4163
+ * @throws {RequiredError}
4164
+ */
4165
+ getSecrets(workspaceId: string, changeSetId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<{
4166
+ [key: string]: HashMapValue;
4167
+ }>>;
4168
+ /**
4169
+ *
4170
+ * @param {string} workspaceId Workspace identifier
4171
+ * @param {string} changeSetId Change set identifier
4172
+ * @param {string} secretId Secret identifier
4173
+ * @param {UpdateSecretV1Request} updateSecretV1Request
4174
+ * @param {*} [options] Override http request option.
4175
+ * @throws {RequiredError}
4176
+ */
4177
+ updateSecret(workspaceId: string, changeSetId: string, secretId: string, updateSecretV1Request: UpdateSecretV1Request, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpdateSecretV1Response>>;
4178
+ };
4179
+ /**
4180
+ * SecretsApi - factory interface
4181
+ * @export
4182
+ */
4183
+ export declare const SecretsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4184
+ /**
4185
+ *
4186
+ * @param {SecretsApiCreateSecretRequest} requestParameters Request parameters.
4187
+ * @param {*} [options] Override http request option.
4188
+ * @throws {RequiredError}
4189
+ */
4190
+ createSecret(requestParameters: SecretsApiCreateSecretRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateSecretV1Response>;
4191
+ /**
4192
+ *
4193
+ * @param {SecretsApiDeleteSecretRequest} requestParameters Request parameters.
4194
+ * @param {*} [options] Override http request option.
4195
+ * @throws {RequiredError}
4196
+ */
4197
+ deleteSecret(requestParameters: SecretsApiDeleteSecretRequest, options?: RawAxiosRequestConfig): AxiosPromise<DeleteSecretV1Response>;
4198
+ /**
4199
+ *
4200
+ * @param {SecretsApiGetSecretsRequest} requestParameters Request parameters.
4201
+ * @param {*} [options] Override http request option.
4202
+ * @throws {RequiredError}
4203
+ */
4204
+ getSecrets(requestParameters: SecretsApiGetSecretsRequest, options?: RawAxiosRequestConfig): AxiosPromise<{
4205
+ [key: string]: HashMapValue;
4206
+ }>;
4207
+ /**
4208
+ *
4209
+ * @param {SecretsApiUpdateSecretRequest} requestParameters Request parameters.
4210
+ * @param {*} [options] Override http request option.
4211
+ * @throws {RequiredError}
4212
+ */
4213
+ updateSecret(requestParameters: SecretsApiUpdateSecretRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateSecretV1Response>;
4214
+ };
4215
+ /**
4216
+ * SecretsApi - interface
4217
+ * @export
4218
+ * @interface SecretsApi
4219
+ */
4220
+ export interface SecretsApiInterface {
4221
+ /**
4222
+ *
4223
+ * @param {SecretsApiCreateSecretRequest} requestParameters Request parameters.
4224
+ * @param {*} [options] Override http request option.
4225
+ * @throws {RequiredError}
4226
+ * @memberof SecretsApiInterface
4227
+ */
4228
+ createSecret(requestParameters: SecretsApiCreateSecretRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateSecretV1Response>;
4229
+ /**
4230
+ *
4231
+ * @param {SecretsApiDeleteSecretRequest} requestParameters Request parameters.
4232
+ * @param {*} [options] Override http request option.
4233
+ * @throws {RequiredError}
4234
+ * @memberof SecretsApiInterface
4235
+ */
4236
+ deleteSecret(requestParameters: SecretsApiDeleteSecretRequest, options?: RawAxiosRequestConfig): AxiosPromise<DeleteSecretV1Response>;
4237
+ /**
4238
+ *
4239
+ * @param {SecretsApiGetSecretsRequest} requestParameters Request parameters.
4240
+ * @param {*} [options] Override http request option.
4241
+ * @throws {RequiredError}
4242
+ * @memberof SecretsApiInterface
4243
+ */
4244
+ getSecrets(requestParameters: SecretsApiGetSecretsRequest, options?: RawAxiosRequestConfig): AxiosPromise<{
4245
+ [key: string]: HashMapValue;
4246
+ }>;
4247
+ /**
4248
+ *
4249
+ * @param {SecretsApiUpdateSecretRequest} requestParameters Request parameters.
4250
+ * @param {*} [options] Override http request option.
4251
+ * @throws {RequiredError}
4252
+ * @memberof SecretsApiInterface
4253
+ */
4254
+ updateSecret(requestParameters: SecretsApiUpdateSecretRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpdateSecretV1Response>;
4255
+ }
4256
+ /**
4257
+ * Request parameters for createSecret operation in SecretsApi.
4258
+ * @export
4259
+ * @interface SecretsApiCreateSecretRequest
4260
+ */
4261
+ export interface SecretsApiCreateSecretRequest {
4262
+ /**
4263
+ * Workspace identifier
4264
+ * @type {string}
4265
+ * @memberof SecretsApiCreateSecret
4266
+ */
4267
+ readonly workspaceId: string;
4268
+ /**
4269
+ * Change set identifier
4270
+ * @type {string}
4271
+ * @memberof SecretsApiCreateSecret
4272
+ */
4273
+ readonly changeSetId: string;
4274
+ /**
4275
+ *
4276
+ * @type {CreateSecretV1Request}
4277
+ * @memberof SecretsApiCreateSecret
4278
+ */
4279
+ readonly createSecretV1Request: CreateSecretV1Request;
4280
+ }
4281
+ /**
4282
+ * Request parameters for deleteSecret operation in SecretsApi.
4283
+ * @export
4284
+ * @interface SecretsApiDeleteSecretRequest
4285
+ */
4286
+ export interface SecretsApiDeleteSecretRequest {
4287
+ /**
4288
+ * Workspace identifier
4289
+ * @type {string}
4290
+ * @memberof SecretsApiDeleteSecret
4291
+ */
4292
+ readonly workspaceId: string;
4293
+ /**
4294
+ * Change set identifier
4295
+ * @type {string}
4296
+ * @memberof SecretsApiDeleteSecret
4297
+ */
4298
+ readonly changeSetId: string;
4299
+ /**
4300
+ * Secret identifier
4301
+ * @type {string}
4302
+ * @memberof SecretsApiDeleteSecret
4303
+ */
4304
+ readonly secretId: string;
4305
+ }
4306
+ /**
4307
+ * Request parameters for getSecrets operation in SecretsApi.
4308
+ * @export
4309
+ * @interface SecretsApiGetSecretsRequest
4310
+ */
4311
+ export interface SecretsApiGetSecretsRequest {
4312
+ /**
4313
+ * Workspace identifier
4314
+ * @type {string}
4315
+ * @memberof SecretsApiGetSecrets
4316
+ */
4317
+ readonly workspaceId: string;
4318
+ /**
4319
+ * Change set identifier
4320
+ * @type {string}
4321
+ * @memberof SecretsApiGetSecrets
4322
+ */
4323
+ readonly changeSetId: string;
4324
+ }
4325
+ /**
4326
+ * Request parameters for updateSecret operation in SecretsApi.
4327
+ * @export
4328
+ * @interface SecretsApiUpdateSecretRequest
4329
+ */
4330
+ export interface SecretsApiUpdateSecretRequest {
4331
+ /**
4332
+ * Workspace identifier
4333
+ * @type {string}
4334
+ * @memberof SecretsApiUpdateSecret
4335
+ */
4336
+ readonly workspaceId: string;
4337
+ /**
4338
+ * Change set identifier
4339
+ * @type {string}
4340
+ * @memberof SecretsApiUpdateSecret
4341
+ */
4342
+ readonly changeSetId: string;
4343
+ /**
4344
+ * Secret identifier
4345
+ * @type {string}
4346
+ * @memberof SecretsApiUpdateSecret
4347
+ */
4348
+ readonly secretId: string;
4349
+ /**
4350
+ *
4351
+ * @type {UpdateSecretV1Request}
4352
+ * @memberof SecretsApiUpdateSecret
4353
+ */
4354
+ readonly updateSecretV1Request: UpdateSecretV1Request;
4355
+ }
4356
+ /**
4357
+ * SecretsApi - object-oriented interface
4358
+ * @export
4359
+ * @class SecretsApi
4360
+ * @extends {BaseAPI}
4361
+ */
4362
+ export declare class SecretsApi extends BaseAPI implements SecretsApiInterface {
4363
+ /**
4364
+ *
4365
+ * @param {SecretsApiCreateSecretRequest} requestParameters Request parameters.
4366
+ * @param {*} [options] Override http request option.
4367
+ * @throws {RequiredError}
4368
+ * @memberof SecretsApi
4369
+ */
4370
+ createSecret(requestParameters: SecretsApiCreateSecretRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateSecretV1Response, any>>;
4371
+ /**
4372
+ *
4373
+ * @param {SecretsApiDeleteSecretRequest} requestParameters Request parameters.
4374
+ * @param {*} [options] Override http request option.
4375
+ * @throws {RequiredError}
4376
+ * @memberof SecretsApi
4377
+ */
4378
+ deleteSecret(requestParameters: SecretsApiDeleteSecretRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DeleteSecretV1Response, any>>;
4379
+ /**
4380
+ *
4381
+ * @param {SecretsApiGetSecretsRequest} requestParameters Request parameters.
4382
+ * @param {*} [options] Override http request option.
4383
+ * @throws {RequiredError}
4384
+ * @memberof SecretsApi
4385
+ */
4386
+ getSecrets(requestParameters: SecretsApiGetSecretsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<{
4387
+ [key: string]: HashMapValue;
4388
+ }, any>>;
4389
+ /**
4390
+ *
4391
+ * @param {SecretsApiUpdateSecretRequest} requestParameters Request parameters.
4392
+ * @param {*} [options] Override http request option.
4393
+ * @throws {RequiredError}
4394
+ * @memberof SecretsApi
4395
+ */
4396
+ updateSecret(requestParameters: SecretsApiUpdateSecretRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpdateSecretV1Response, any>>;
4397
+ }
4398
+ /**
4399
+ * WhoamiApi - axios parameter creator
4400
+ * @export
4401
+ */
4402
+ export declare const WhoamiApiAxiosParamCreator: (configuration?: Configuration) => {
4403
+ /**
4404
+ *
4405
+ * @param {*} [options] Override http request option.
4406
+ * @throws {RequiredError}
4407
+ */
4408
+ whoami: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
4409
+ };
4410
+ /**
4411
+ * WhoamiApi - functional programming interface
4412
+ * @export
4413
+ */
4414
+ export declare const WhoamiApiFp: (configuration?: Configuration) => {
4415
+ /**
4416
+ *
4417
+ * @param {*} [options] Override http request option.
4418
+ * @throws {RequiredError}
4419
+ */
4420
+ whoami(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WhoamiResponse>>;
4421
+ };
4422
+ /**
4423
+ * WhoamiApi - factory interface
4424
+ * @export
4425
+ */
4426
+ export declare const WhoamiApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
4427
+ /**
4428
+ *
4429
+ * @param {*} [options] Override http request option.
4430
+ * @throws {RequiredError}
4431
+ */
4432
+ whoami(options?: RawAxiosRequestConfig): AxiosPromise<WhoamiResponse>;
4433
+ };
4434
+ /**
4435
+ * WhoamiApi - interface
4436
+ * @export
4437
+ * @interface WhoamiApi
4438
+ */
4439
+ export interface WhoamiApiInterface {
4440
+ /**
4441
+ *
4442
+ * @param {*} [options] Override http request option.
4443
+ * @throws {RequiredError}
4444
+ * @memberof WhoamiApiInterface
4445
+ */
4446
+ whoami(options?: RawAxiosRequestConfig): AxiosPromise<WhoamiResponse>;
4447
+ }
4448
+ /**
4449
+ * WhoamiApi - object-oriented interface
4450
+ * @export
4451
+ * @class WhoamiApi
4452
+ * @extends {BaseAPI}
4453
+ */
4454
+ export declare class WhoamiApi extends BaseAPI implements WhoamiApiInterface {
4455
+ /**
4456
+ *
4457
+ * @param {*} [options] Override http request option.
4458
+ * @throws {RequiredError}
4459
+ * @memberof WhoamiApi
4460
+ */
4461
+ whoami(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<WhoamiResponse, any>>;
4462
+ }