waldur-js-client 7.9.6-dev.7 → 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 +3 -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
|
@@ -9690,7 +9690,7 @@ export type OrderDetails = {
|
|
|
9690
9690
|
readonly order_subtype?: string | null;
|
|
9691
9691
|
issue?: IssueReference | null;
|
|
9692
9692
|
};
|
|
9693
|
-
export type
|
|
9693
|
+
export type OrderErrorDetailsRequest = {
|
|
9694
9694
|
error_message?: string;
|
|
9695
9695
|
error_traceback?: string;
|
|
9696
9696
|
};
|
|
@@ -31678,7 +31678,7 @@ export type MarketplaceOrdersOfferingRetrieveResponses = {
|
|
|
31678
31678
|
};
|
|
31679
31679
|
export type MarketplaceOrdersOfferingRetrieveResponse = MarketplaceOrdersOfferingRetrieveResponses[keyof MarketplaceOrdersOfferingRetrieveResponses];
|
|
31680
31680
|
export type MarketplaceOrdersRejectByConsumerData = {
|
|
31681
|
-
body?:
|
|
31681
|
+
body?: OrderErrorDetailsRequest;
|
|
31682
31682
|
path: {
|
|
31683
31683
|
uuid: string;
|
|
31684
31684
|
};
|
|
@@ -31734,7 +31734,7 @@ export type MarketplaceOrdersSetStateDoneResponses = {
|
|
|
31734
31734
|
200: unknown;
|
|
31735
31735
|
};
|
|
31736
31736
|
export type MarketplaceOrdersSetStateErredData = {
|
|
31737
|
-
body?:
|
|
31737
|
+
body?: OrderErrorDetailsRequest;
|
|
31738
31738
|
path: {
|
|
31739
31739
|
uuid: string;
|
|
31740
31740
|
};
|