waldur-js-client 7.9.6-dev.6 → 7.9.6-dev.8
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.js +5 -1
- package/dist/types.gen.d.ts +4 -3
- package/package.json +1 -1
package/dist/sdk.gen.js
CHANGED
|
@@ -11907,7 +11907,11 @@ export const marketplaceOrdersRejectByConsumer = (options) => {
|
|
|
11907
11907
|
}
|
|
11908
11908
|
],
|
|
11909
11909
|
url: '/api/marketplace-orders/{uuid}/reject_by_consumer/',
|
|
11910
|
-
...options
|
|
11910
|
+
...options,
|
|
11911
|
+
headers: {
|
|
11912
|
+
'Content-Type': 'application/json',
|
|
11913
|
+
...options.headers
|
|
11914
|
+
}
|
|
11911
11915
|
});
|
|
11912
11916
|
};
|
|
11913
11917
|
/**
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -7836,6 +7836,7 @@ export type OnboardingVerification = {
|
|
|
7836
7836
|
*/
|
|
7837
7837
|
legal_name?: string;
|
|
7838
7838
|
status: OnboardingVerificationStatusEnum;
|
|
7839
|
+
readonly justifications: Array<OnboardingJustification>;
|
|
7839
7840
|
/**
|
|
7840
7841
|
* Method used for validation
|
|
7841
7842
|
*/
|
|
@@ -9689,7 +9690,7 @@ export type OrderDetails = {
|
|
|
9689
9690
|
readonly order_subtype?: string | null;
|
|
9690
9691
|
issue?: IssueReference | null;
|
|
9691
9692
|
};
|
|
9692
|
-
export type
|
|
9693
|
+
export type OrderErrorDetailsRequest = {
|
|
9693
9694
|
error_message?: string;
|
|
9694
9695
|
error_traceback?: string;
|
|
9695
9696
|
};
|
|
@@ -31677,7 +31678,7 @@ export type MarketplaceOrdersOfferingRetrieveResponses = {
|
|
|
31677
31678
|
};
|
|
31678
31679
|
export type MarketplaceOrdersOfferingRetrieveResponse = MarketplaceOrdersOfferingRetrieveResponses[keyof MarketplaceOrdersOfferingRetrieveResponses];
|
|
31679
31680
|
export type MarketplaceOrdersRejectByConsumerData = {
|
|
31680
|
-
body?:
|
|
31681
|
+
body?: OrderErrorDetailsRequest;
|
|
31681
31682
|
path: {
|
|
31682
31683
|
uuid: string;
|
|
31683
31684
|
};
|
|
@@ -31733,7 +31734,7 @@ export type MarketplaceOrdersSetStateDoneResponses = {
|
|
|
31733
31734
|
200: unknown;
|
|
31734
31735
|
};
|
|
31735
31736
|
export type MarketplaceOrdersSetStateErredData = {
|
|
31736
|
-
body?:
|
|
31737
|
+
body?: OrderErrorDetailsRequest;
|
|
31737
31738
|
path: {
|
|
31738
31739
|
uuid: string;
|
|
31739
31740
|
};
|