waldur-js-client 8.0.3-dev.12 → 8.0.3-dev.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/sdk.gen.d.ts +1 -28
- package/dist/sdk.gen.js +5 -194
- package/dist/types.gen.d.ts +47 -177
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -3332,6 +3332,7 @@ export type CeleryWorkerStats = {
|
|
|
3332
3332
|
[key: string]: unknown;
|
|
3333
3333
|
};
|
|
3334
3334
|
};
|
|
3335
|
+
export type ChatRequestModeEnum = 'reload';
|
|
3335
3336
|
export type ChatRequestRequest = {
|
|
3336
3337
|
/**
|
|
3337
3338
|
* User input text for the chat model.
|
|
@@ -3345,6 +3346,10 @@ export type ChatRequestRequest = {
|
|
|
3345
3346
|
* Thread UUID whose name should be set to the assistant's response. Skips message persistence for this call.
|
|
3346
3347
|
*/
|
|
3347
3348
|
update_thread_name?: string | null;
|
|
3349
|
+
/**
|
|
3350
|
+
* 'reload': replace the last assistant response. Omit for normal new-message behavior.
|
|
3351
|
+
*/
|
|
3352
|
+
mode?: ChatRequestModeEnum | NullEnum | null;
|
|
3348
3353
|
};
|
|
3349
3354
|
export type ChatResponse = {
|
|
3350
3355
|
/**
|
|
@@ -4159,6 +4164,7 @@ export type ConstanceSettings = {
|
|
|
4159
4164
|
OIDC_CACHE_TIMEOUT?: number;
|
|
4160
4165
|
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
4161
4166
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
4167
|
+
OIDC_MATCHMAKING_BY_EMAIL?: boolean;
|
|
4162
4168
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
4163
4169
|
WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
|
|
4164
4170
|
REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
|
|
@@ -4395,6 +4401,7 @@ export type ConstanceSettingsRequest = {
|
|
|
4395
4401
|
OIDC_CACHE_TIMEOUT?: number;
|
|
4396
4402
|
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
4397
4403
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
4404
|
+
OIDC_MATCHMAKING_BY_EMAIL?: boolean;
|
|
4398
4405
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
4399
4406
|
WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
|
|
4400
4407
|
REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
|
|
@@ -8614,6 +8621,10 @@ export type MergedPluginOptions = {
|
|
|
8614
8621
|
* If set to True, send email notifications when providers or consumers exchange messages on pending orders.
|
|
8615
8622
|
*/
|
|
8616
8623
|
notify_about_provider_consumer_messages?: boolean;
|
|
8624
|
+
/**
|
|
8625
|
+
* If set to True, offering cannot be deleted while it has non-terminated resources.
|
|
8626
|
+
*/
|
|
8627
|
+
restrict_deletion_with_active_resources?: boolean;
|
|
8617
8628
|
/**
|
|
8618
8629
|
* If set, it will be used as a default MTU for the first network in a tenant
|
|
8619
8630
|
*/
|
|
@@ -8880,6 +8891,10 @@ export type MergedPluginOptionsRequest = {
|
|
|
8880
8891
|
* If set to True, send email notifications when providers or consumers exchange messages on pending orders.
|
|
8881
8892
|
*/
|
|
8882
8893
|
notify_about_provider_consumer_messages?: boolean;
|
|
8894
|
+
/**
|
|
8895
|
+
* If set to True, offering cannot be deleted while it has non-terminated resources.
|
|
8896
|
+
*/
|
|
8897
|
+
restrict_deletion_with_active_resources?: boolean;
|
|
8883
8898
|
/**
|
|
8884
8899
|
* If set, it will be used as a default MTU for the first network in a tenant
|
|
8885
8900
|
*/
|
|
@@ -9383,19 +9398,13 @@ export type MergedSecretOptionsRequest = {
|
|
|
9383
9398
|
};
|
|
9384
9399
|
export type Message = {
|
|
9385
9400
|
readonly uuid: string;
|
|
9386
|
-
thread: string;
|
|
9401
|
+
readonly thread: string;
|
|
9387
9402
|
role: MessageRoleEnum;
|
|
9388
9403
|
content: string;
|
|
9389
9404
|
readonly sequence_index: number;
|
|
9390
|
-
replaces
|
|
9405
|
+
readonly replaces: string;
|
|
9391
9406
|
readonly created: string;
|
|
9392
9407
|
};
|
|
9393
|
-
export type MessageRequest = {
|
|
9394
|
-
thread: string;
|
|
9395
|
-
role: MessageRoleEnum;
|
|
9396
|
-
content: string;
|
|
9397
|
-
replaces?: string | null;
|
|
9398
|
-
};
|
|
9399
9408
|
export type MessageResponse = {
|
|
9400
9409
|
message: string;
|
|
9401
9410
|
};
|
|
@@ -9480,7 +9489,6 @@ export type MigrationDetailsRequest = {
|
|
|
9480
9489
|
error_traceback?: string;
|
|
9481
9490
|
};
|
|
9482
9491
|
export type MinimalConsumptionLogicEnum = 'fixed' | 'linear';
|
|
9483
|
-
export type ModeEnum = 'production' | 'emulator';
|
|
9484
9492
|
export type MoveOfferingRequest = {
|
|
9485
9493
|
/**
|
|
9486
9494
|
* Target customer URL with service provider profile where the offering should be moved
|
|
@@ -13592,11 +13600,14 @@ export type OrderDetails = {
|
|
|
13592
13600
|
provider_message_attachment?: string | null;
|
|
13593
13601
|
consumer_message?: string;
|
|
13594
13602
|
consumer_message_attachment?: string | null;
|
|
13603
|
+
readonly consumer_rejection_comment?: string;
|
|
13604
|
+
readonly provider_rejection_comment?: string;
|
|
13595
13605
|
issue?: IssueReference | null;
|
|
13596
13606
|
};
|
|
13597
13607
|
export type OrderErrorDetailsRequest = {
|
|
13598
13608
|
error_message?: string;
|
|
13599
13609
|
error_traceback?: string;
|
|
13610
|
+
consumer_rejection_comment?: string;
|
|
13600
13611
|
};
|
|
13601
13612
|
export type OrderInfoResponse = {
|
|
13602
13613
|
readonly detail: string;
|
|
@@ -13606,6 +13617,9 @@ export type OrderProviderInfoRequest = {
|
|
|
13606
13617
|
provider_message_url?: string;
|
|
13607
13618
|
provider_message_attachment?: Blob | File;
|
|
13608
13619
|
};
|
|
13620
|
+
export type OrderProviderRejectionRequest = {
|
|
13621
|
+
provider_rejection_comment?: string;
|
|
13622
|
+
};
|
|
13609
13623
|
export type OrderState = 'pending-consumer' | 'pending-provider' | 'pending-project' | 'pending-start-date' | 'executing' | 'done' | 'erred' | 'canceled' | 'rejected';
|
|
13610
13624
|
export type OrderStatsResponse = {
|
|
13611
13625
|
/**
|
|
@@ -15561,10 +15575,6 @@ export type PatchedTemplateRequest = {
|
|
|
15561
15575
|
description?: string;
|
|
15562
15576
|
issue_type?: IssueTypeEnum;
|
|
15563
15577
|
};
|
|
15564
|
-
export type PatchedThreadSessionRequest = {
|
|
15565
|
-
name?: string;
|
|
15566
|
-
is_archived?: boolean;
|
|
15567
|
-
};
|
|
15568
15578
|
export type PatchedUserAgreementRequest = {
|
|
15569
15579
|
content?: string;
|
|
15570
15580
|
agreement_type?: AgreementTypeEnum;
|
|
@@ -21382,6 +21392,7 @@ export type SlurmCommandHistory = {
|
|
|
21382
21392
|
*/
|
|
21383
21393
|
error_message?: string;
|
|
21384
21394
|
};
|
|
21395
|
+
export type SlurmCommandResultModeEnum = 'production' | 'emulator';
|
|
21385
21396
|
export type SlurmCommandResultRequest = {
|
|
21386
21397
|
/**
|
|
21387
21398
|
* UUID of the resource the command was applied to
|
|
@@ -21398,7 +21409,7 @@ export type SlurmCommandResultRequest = {
|
|
|
21398
21409
|
/**
|
|
21399
21410
|
* Execution mode of the command
|
|
21400
21411
|
*/
|
|
21401
|
-
mode?:
|
|
21412
|
+
mode?: SlurmCommandResultModeEnum;
|
|
21402
21413
|
/**
|
|
21403
21414
|
* List of shell commands actually executed by the site agent
|
|
21404
21415
|
*/
|
|
@@ -22264,7 +22275,10 @@ export type ThreadSession = {
|
|
|
22264
22275
|
readonly flags?: unknown;
|
|
22265
22276
|
is_archived?: boolean;
|
|
22266
22277
|
readonly message_count?: number;
|
|
22278
|
+
readonly user_username?: string;
|
|
22279
|
+
readonly user_full_name?: string;
|
|
22267
22280
|
readonly created?: string;
|
|
22281
|
+
readonly modified?: string;
|
|
22268
22282
|
};
|
|
22269
22283
|
export type ThreadSessionRequest = {
|
|
22270
22284
|
name?: string;
|
|
@@ -24742,6 +24756,7 @@ export type ConstanceSettingsRequestForm = {
|
|
|
24742
24756
|
OIDC_CACHE_TIMEOUT?: number;
|
|
24743
24757
|
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
24744
24758
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
24759
|
+
OIDC_MATCHMAKING_BY_EMAIL?: boolean;
|
|
24745
24760
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
24746
24761
|
WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
|
|
24747
24762
|
REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
|
|
@@ -24978,6 +24993,7 @@ export type ConstanceSettingsRequestMultipart = {
|
|
|
24978
24993
|
OIDC_CACHE_TIMEOUT?: number;
|
|
24979
24994
|
OIDC_ACCESS_TOKEN_ENABLED?: boolean;
|
|
24980
24995
|
OIDC_BLOCK_CREATION_OF_UNINVITED_USERS?: boolean;
|
|
24996
|
+
OIDC_MATCHMAKING_BY_EMAIL?: boolean;
|
|
24981
24997
|
DEACTIVATE_USER_IF_NO_ROLES?: boolean;
|
|
24982
24998
|
WALDUR_AUTH_SOCIAL_ROLE_CLAIM?: string;
|
|
24983
24999
|
REMOTE_EDUTEAMS_REFRESH_TOKEN?: string;
|
|
@@ -31509,6 +31525,7 @@ export type ChatMessagesListData = {
|
|
|
31509
31525
|
body?: never;
|
|
31510
31526
|
path?: never;
|
|
31511
31527
|
query?: {
|
|
31528
|
+
include_history?: boolean;
|
|
31512
31529
|
/**
|
|
31513
31530
|
* A page number within the paginated result set.
|
|
31514
31531
|
*/
|
|
@@ -31525,50 +31542,6 @@ export type ChatMessagesListResponses = {
|
|
|
31525
31542
|
200: Array<Message>;
|
|
31526
31543
|
};
|
|
31527
31544
|
export type ChatMessagesListResponse = ChatMessagesListResponses[keyof ChatMessagesListResponses];
|
|
31528
|
-
export type ChatMessagesCountData = {
|
|
31529
|
-
body?: never;
|
|
31530
|
-
path?: never;
|
|
31531
|
-
query?: {
|
|
31532
|
-
/**
|
|
31533
|
-
* A page number within the paginated result set.
|
|
31534
|
-
*/
|
|
31535
|
-
page?: number;
|
|
31536
|
-
/**
|
|
31537
|
-
* Number of results to return per page.
|
|
31538
|
-
*/
|
|
31539
|
-
page_size?: number;
|
|
31540
|
-
thread?: string;
|
|
31541
|
-
};
|
|
31542
|
-
url: '/api/chat-messages/';
|
|
31543
|
-
};
|
|
31544
|
-
export type ChatMessagesCountResponses = {
|
|
31545
|
-
/**
|
|
31546
|
-
* No response body
|
|
31547
|
-
*/
|
|
31548
|
-
200: unknown;
|
|
31549
|
-
};
|
|
31550
|
-
export type ChatMessagesCreateData = {
|
|
31551
|
-
body: MessageRequest;
|
|
31552
|
-
path?: never;
|
|
31553
|
-
query?: never;
|
|
31554
|
-
url: '/api/chat-messages/';
|
|
31555
|
-
};
|
|
31556
|
-
export type ChatMessagesCreateResponses = {
|
|
31557
|
-
201: Message;
|
|
31558
|
-
};
|
|
31559
|
-
export type ChatMessagesCreateResponse = ChatMessagesCreateResponses[keyof ChatMessagesCreateResponses];
|
|
31560
|
-
export type ChatMessagesRetrieveData = {
|
|
31561
|
-
body?: never;
|
|
31562
|
-
path: {
|
|
31563
|
-
uuid: string;
|
|
31564
|
-
};
|
|
31565
|
-
query?: never;
|
|
31566
|
-
url: '/api/chat-messages/{uuid}/';
|
|
31567
|
-
};
|
|
31568
|
-
export type ChatMessagesRetrieveResponses = {
|
|
31569
|
-
200: Message;
|
|
31570
|
-
};
|
|
31571
|
-
export type ChatMessagesRetrieveResponse = ChatMessagesRetrieveResponses[keyof ChatMessagesRetrieveResponses];
|
|
31572
31545
|
export type ChatMessagesEditData = {
|
|
31573
31546
|
body?: {
|
|
31574
31547
|
content?: string;
|
|
@@ -31583,28 +31556,6 @@ export type ChatMessagesEditResponses = {
|
|
|
31583
31556
|
200: Message;
|
|
31584
31557
|
};
|
|
31585
31558
|
export type ChatMessagesEditResponse = ChatMessagesEditResponses[keyof ChatMessagesEditResponses];
|
|
31586
|
-
export type ChatMessagesHistoryListData = {
|
|
31587
|
-
body?: never;
|
|
31588
|
-
path: {
|
|
31589
|
-
uuid: string;
|
|
31590
|
-
};
|
|
31591
|
-
query?: {
|
|
31592
|
-
/**
|
|
31593
|
-
* A page number within the paginated result set.
|
|
31594
|
-
*/
|
|
31595
|
-
page?: number;
|
|
31596
|
-
/**
|
|
31597
|
-
* Number of results to return per page.
|
|
31598
|
-
*/
|
|
31599
|
-
page_size?: number;
|
|
31600
|
-
thread?: string;
|
|
31601
|
-
};
|
|
31602
|
-
url: '/api/chat-messages/{uuid}/history/';
|
|
31603
|
-
};
|
|
31604
|
-
export type ChatMessagesHistoryListResponses = {
|
|
31605
|
-
200: Array<Message>;
|
|
31606
|
-
};
|
|
31607
|
-
export type ChatMessagesHistoryListResponse = ChatMessagesHistoryListResponses[keyof ChatMessagesHistoryListResponses];
|
|
31608
31559
|
export type ChatQuotaSetQuotaData = {
|
|
31609
31560
|
body: SetTokenQuotaRequest;
|
|
31610
31561
|
path?: never;
|
|
@@ -31652,27 +31603,6 @@ export type ChatSessionsListResponses = {
|
|
|
31652
31603
|
200: Array<ChatSession>;
|
|
31653
31604
|
};
|
|
31654
31605
|
export type ChatSessionsListResponse = ChatSessionsListResponses[keyof ChatSessionsListResponses];
|
|
31655
|
-
export type ChatSessionsCountData = {
|
|
31656
|
-
body?: never;
|
|
31657
|
-
path?: never;
|
|
31658
|
-
query?: {
|
|
31659
|
-
/**
|
|
31660
|
-
* A page number within the paginated result set.
|
|
31661
|
-
*/
|
|
31662
|
-
page?: number;
|
|
31663
|
-
/**
|
|
31664
|
-
* Number of results to return per page.
|
|
31665
|
-
*/
|
|
31666
|
-
page_size?: number;
|
|
31667
|
-
};
|
|
31668
|
-
url: '/api/chat-sessions/';
|
|
31669
|
-
};
|
|
31670
|
-
export type ChatSessionsCountResponses = {
|
|
31671
|
-
/**
|
|
31672
|
-
* No response body
|
|
31673
|
-
*/
|
|
31674
|
-
200: unknown;
|
|
31675
|
-
};
|
|
31676
31606
|
export type ChatSessionsRetrieveData = {
|
|
31677
31607
|
body?: never;
|
|
31678
31608
|
path: {
|
|
@@ -31697,24 +31627,20 @@ export type ChatSessionsCurrentRetrieveResponses = {
|
|
|
31697
31627
|
200: ChatSession;
|
|
31698
31628
|
};
|
|
31699
31629
|
export type ChatSessionsCurrentRetrieveResponse = ChatSessionsCurrentRetrieveResponses[keyof ChatSessionsCurrentRetrieveResponses];
|
|
31700
|
-
export type ChatSessionsCurrentCountData = {
|
|
31701
|
-
body?: never;
|
|
31702
|
-
path?: never;
|
|
31703
|
-
query?: never;
|
|
31704
|
-
url: '/api/chat-sessions/current/';
|
|
31705
|
-
};
|
|
31706
|
-
export type ChatSessionsCurrentCountResponses = {
|
|
31707
|
-
/**
|
|
31708
|
-
* No response body
|
|
31709
|
-
*/
|
|
31710
|
-
200: unknown;
|
|
31711
|
-
};
|
|
31712
31630
|
export type ChatThreadsListData = {
|
|
31713
31631
|
body?: never;
|
|
31714
31632
|
path?: never;
|
|
31715
31633
|
query?: {
|
|
31716
|
-
|
|
31634
|
+
created?: string;
|
|
31635
|
+
field?: Array<'chat_session' | 'created' | 'flags' | 'is_archived' | 'message_count' | 'modified' | 'name' | 'user_full_name' | 'user_username' | 'uuid'>;
|
|
31717
31636
|
is_archived?: boolean;
|
|
31637
|
+
modified?: string;
|
|
31638
|
+
/**
|
|
31639
|
+
* Ordering
|
|
31640
|
+
*
|
|
31641
|
+
*
|
|
31642
|
+
*/
|
|
31643
|
+
o?: Array<'-created' | '-modified' | 'created' | 'modified'>;
|
|
31718
31644
|
/**
|
|
31719
31645
|
* A page number within the paginated result set.
|
|
31720
31646
|
*/
|
|
@@ -31723,6 +31649,7 @@ export type ChatThreadsListData = {
|
|
|
31723
31649
|
* Number of results to return per page.
|
|
31724
31650
|
*/
|
|
31725
31651
|
page_size?: number;
|
|
31652
|
+
query?: string;
|
|
31726
31653
|
user?: string;
|
|
31727
31654
|
};
|
|
31728
31655
|
url: '/api/chat-threads/';
|
|
@@ -31731,46 +31658,13 @@ export type ChatThreadsListResponses = {
|
|
|
31731
31658
|
200: Array<ThreadSession>;
|
|
31732
31659
|
};
|
|
31733
31660
|
export type ChatThreadsListResponse = ChatThreadsListResponses[keyof ChatThreadsListResponses];
|
|
31734
|
-
export type ChatThreadsCountData = {
|
|
31735
|
-
body?: never;
|
|
31736
|
-
path?: never;
|
|
31737
|
-
query?: {
|
|
31738
|
-
is_archived?: boolean;
|
|
31739
|
-
/**
|
|
31740
|
-
* A page number within the paginated result set.
|
|
31741
|
-
*/
|
|
31742
|
-
page?: number;
|
|
31743
|
-
/**
|
|
31744
|
-
* Number of results to return per page.
|
|
31745
|
-
*/
|
|
31746
|
-
page_size?: number;
|
|
31747
|
-
user?: string;
|
|
31748
|
-
};
|
|
31749
|
-
url: '/api/chat-threads/';
|
|
31750
|
-
};
|
|
31751
|
-
export type ChatThreadsCountResponses = {
|
|
31752
|
-
/**
|
|
31753
|
-
* No response body
|
|
31754
|
-
*/
|
|
31755
|
-
200: unknown;
|
|
31756
|
-
};
|
|
31757
|
-
export type ChatThreadsCreateData = {
|
|
31758
|
-
body?: ThreadSessionRequest;
|
|
31759
|
-
path?: never;
|
|
31760
|
-
query?: never;
|
|
31761
|
-
url: '/api/chat-threads/';
|
|
31762
|
-
};
|
|
31763
|
-
export type ChatThreadsCreateResponses = {
|
|
31764
|
-
201: ThreadSession;
|
|
31765
|
-
};
|
|
31766
|
-
export type ChatThreadsCreateResponse = ChatThreadsCreateResponses[keyof ChatThreadsCreateResponses];
|
|
31767
31661
|
export type ChatThreadsRetrieveData = {
|
|
31768
31662
|
body?: never;
|
|
31769
31663
|
path: {
|
|
31770
31664
|
uuid: string;
|
|
31771
31665
|
};
|
|
31772
31666
|
query?: {
|
|
31773
|
-
field?: Array<'chat_session' | 'created' | 'flags' | 'is_archived' | 'message_count' | 'name' | 'uuid'>;
|
|
31667
|
+
field?: Array<'chat_session' | 'created' | 'flags' | 'is_archived' | 'message_count' | 'modified' | 'name' | 'user_full_name' | 'user_username' | 'uuid'>;
|
|
31774
31668
|
};
|
|
31775
31669
|
url: '/api/chat-threads/{uuid}/';
|
|
31776
31670
|
};
|
|
@@ -31778,30 +31672,6 @@ export type ChatThreadsRetrieveResponses = {
|
|
|
31778
31672
|
200: ThreadSession;
|
|
31779
31673
|
};
|
|
31780
31674
|
export type ChatThreadsRetrieveResponse = ChatThreadsRetrieveResponses[keyof ChatThreadsRetrieveResponses];
|
|
31781
|
-
export type ChatThreadsPartialUpdateData = {
|
|
31782
|
-
body?: PatchedThreadSessionRequest;
|
|
31783
|
-
path: {
|
|
31784
|
-
uuid: string;
|
|
31785
|
-
};
|
|
31786
|
-
query?: never;
|
|
31787
|
-
url: '/api/chat-threads/{uuid}/';
|
|
31788
|
-
};
|
|
31789
|
-
export type ChatThreadsPartialUpdateResponses = {
|
|
31790
|
-
200: ThreadSession;
|
|
31791
|
-
};
|
|
31792
|
-
export type ChatThreadsPartialUpdateResponse = ChatThreadsPartialUpdateResponses[keyof ChatThreadsPartialUpdateResponses];
|
|
31793
|
-
export type ChatThreadsUpdateData = {
|
|
31794
|
-
body?: ThreadSessionRequest;
|
|
31795
|
-
path: {
|
|
31796
|
-
uuid: string;
|
|
31797
|
-
};
|
|
31798
|
-
query?: never;
|
|
31799
|
-
url: '/api/chat-threads/{uuid}/';
|
|
31800
|
-
};
|
|
31801
|
-
export type ChatThreadsUpdateResponses = {
|
|
31802
|
-
200: ThreadSession;
|
|
31803
|
-
};
|
|
31804
|
-
export type ChatThreadsUpdateResponse = ChatThreadsUpdateResponses[keyof ChatThreadsUpdateResponses];
|
|
31805
31675
|
export type ChatThreadsArchiveData = {
|
|
31806
31676
|
body?: ThreadSessionRequest;
|
|
31807
31677
|
path: {
|
|
@@ -41770,7 +41640,7 @@ export type MarketplaceOrdersListData = {
|
|
|
41770
41640
|
* Customer UUID
|
|
41771
41641
|
*/
|
|
41772
41642
|
customer_uuid?: string;
|
|
41773
|
-
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
|
|
41643
|
+
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
|
|
41774
41644
|
/**
|
|
41775
41645
|
* Modified after
|
|
41776
41646
|
*/
|
|
@@ -41986,7 +41856,7 @@ export type MarketplaceOrdersRetrieveData = {
|
|
|
41986
41856
|
uuid: string;
|
|
41987
41857
|
};
|
|
41988
41858
|
query?: {
|
|
41989
|
-
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
|
|
41859
|
+
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
|
|
41990
41860
|
};
|
|
41991
41861
|
url: '/api/marketplace-orders/{uuid}/';
|
|
41992
41862
|
};
|
|
@@ -42098,7 +41968,7 @@ export type MarketplaceOrdersRejectByConsumerResponses = {
|
|
|
42098
41968
|
200: unknown;
|
|
42099
41969
|
};
|
|
42100
41970
|
export type MarketplaceOrdersRejectByProviderData = {
|
|
42101
|
-
body?:
|
|
41971
|
+
body?: OrderProviderRejectionRequest;
|
|
42102
41972
|
path: {
|
|
42103
41973
|
uuid: string;
|
|
42104
41974
|
};
|
|
@@ -45058,7 +44928,7 @@ export type MarketplaceProviderOfferingsOrdersListData = {
|
|
|
45058
44928
|
uuid: string;
|
|
45059
44929
|
};
|
|
45060
44930
|
query?: {
|
|
45061
|
-
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
|
|
44931
|
+
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
|
|
45062
44932
|
/**
|
|
45063
44933
|
* A page number within the paginated result set.
|
|
45064
44934
|
*/
|
|
@@ -63908,7 +63778,7 @@ export type PromotionsCampaignsOrdersListData = {
|
|
|
63908
63778
|
uuid: string;
|
|
63909
63779
|
};
|
|
63910
63780
|
query?: {
|
|
63911
|
-
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
|
|
63781
|
+
field?: Array<'accepting_terms_of_service' | 'activation_price' | 'attachment' | 'attributes' | 'backend_id' | 'callback_url' | 'can_terminate' | 'category_icon' | 'category_title' | 'category_uuid' | 'completed_at' | 'consumer_message' | 'consumer_message_attachment' | 'consumer_rejection_comment' | 'consumer_reviewed_at' | 'consumer_reviewed_by' | 'consumer_reviewed_by_full_name' | 'consumer_reviewed_by_username' | 'cost' | 'created' | 'created_by_civil_number' | 'created_by_email' | 'created_by_full_name' | 'created_by_organization' | 'created_by_organization_registry_code' | 'created_by_username' | 'customer_name' | 'customer_slug' | 'customer_uuid' | 'error_message' | 'error_traceback' | 'fixed_price' | 'issue' | 'limits' | 'marketplace_resource_uuid' | 'modified' | 'new_cost_estimate' | 'new_plan_name' | 'new_plan_uuid' | 'offering' | 'offering_billable' | 'offering_description' | 'offering_image' | 'offering_name' | 'offering_plugin_options' | 'offering_shared' | 'offering_thumbnail' | 'offering_type' | 'offering_uuid' | 'old_cost_estimate' | 'old_plan_name' | 'old_plan_uuid' | 'order_subtype' | 'output' | 'plan' | 'plan_description' | 'plan_name' | 'plan_unit' | 'plan_uuid' | 'project_description' | 'project_name' | 'project_slug' | 'project_uuid' | 'provider_message' | 'provider_message_attachment' | 'provider_message_url' | 'provider_name' | 'provider_rejection_comment' | 'provider_reviewed_at' | 'provider_reviewed_by' | 'provider_reviewed_by_full_name' | 'provider_reviewed_by_username' | 'provider_slug' | 'provider_uuid' | 'request_comment' | 'resource_name' | 'resource_type' | 'resource_uuid' | 'slug' | 'start_date' | 'state' | 'termination_comment' | 'type' | 'url' | 'uuid'>;
|
|
63912
63782
|
/**
|
|
63913
63783
|
* A page number within the paginated result set.
|
|
63914
63784
|
*/
|