waldur-js-client 7.9.6-dev.16 → 7.9.6-dev.17
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 +9 -0
- package/dist/sdk.gen.js +9 -0
- package/dist/types.gen.d.ts +8 -0
- package/package.json +1 -1
package/dist/sdk.gen.d.ts
CHANGED
|
@@ -5954,13 +5954,22 @@ export declare const userActionsSummaryCount: <ThrowOnError extends boolean = fa
|
|
|
5954
5954
|
* Trigger update of user actions
|
|
5955
5955
|
*/
|
|
5956
5956
|
export declare const userActionsUpdateActions: <ThrowOnError extends boolean = false>(options?: Options<UserActionsUpdateActionsData, ThrowOnError>) => import("./client").RequestResult<UserActionsUpdateActionsResponses, unknown, ThrowOnError, "fields">;
|
|
5957
|
+
/**
|
|
5958
|
+
* List user agreements
|
|
5959
|
+
* Retrieve a list of user agreements (Terms of Service and Privacy Policy). Supports filtering by agreement type and language with fallback behavior.
|
|
5960
|
+
*/
|
|
5957
5961
|
export declare const userAgreementsList: <ThrowOnError extends boolean = false>(options?: Options<UserAgreementsListData, ThrowOnError>) => import("./client").RequestResult<UserAgreementsListResponses, unknown, ThrowOnError, "fields">;
|
|
5958
5962
|
/**
|
|
5963
|
+
* List user agreements
|
|
5959
5964
|
* Get number of items in the collection matching the request parameters.
|
|
5960
5965
|
*/
|
|
5961
5966
|
export declare const userAgreementsCount: <ThrowOnError extends boolean = false>(options?: Options<UserAgreementsCountData, ThrowOnError>) => import("./client").RequestResult<UserAgreementsCountResponses, unknown, ThrowOnError, "fields">;
|
|
5962
5967
|
export declare const userAgreementsCreate: <ThrowOnError extends boolean = false>(options: Options<UserAgreementsCreateData, ThrowOnError>) => import("./client").RequestResult<UserAgreementsCreateResponses, unknown, ThrowOnError, "fields">;
|
|
5963
5968
|
export declare const userAgreementsDestroy: <ThrowOnError extends boolean = false>(options: Options<UserAgreementsDestroyData, ThrowOnError>) => import("./client").RequestResult<UserAgreementsDestroyResponses, unknown, ThrowOnError, "fields">;
|
|
5969
|
+
/**
|
|
5970
|
+
* Retrieve user agreement
|
|
5971
|
+
* Fetch the details of a specific user agreement by its UUID.
|
|
5972
|
+
*/
|
|
5964
5973
|
export declare const userAgreementsRetrieve: <ThrowOnError extends boolean = false>(options: Options<UserAgreementsRetrieveData, ThrowOnError>) => import("./client").RequestResult<UserAgreementsRetrieveResponses, unknown, ThrowOnError, "fields">;
|
|
5965
5974
|
export declare const userAgreementsPartialUpdate: <ThrowOnError extends boolean = false>(options: Options<UserAgreementsPartialUpdateData, ThrowOnError>) => import("./client").RequestResult<UserAgreementsPartialUpdateResponses, unknown, ThrowOnError, "fields">;
|
|
5966
5975
|
export declare const userAgreementsUpdate: <ThrowOnError extends boolean = false>(options: Options<UserAgreementsUpdateData, ThrowOnError>) => import("./client").RequestResult<UserAgreementsUpdateResponses, unknown, ThrowOnError, "fields">;
|
package/dist/sdk.gen.js
CHANGED
|
@@ -34017,6 +34017,10 @@ export const userActionsUpdateActions = (options) => {
|
|
|
34017
34017
|
}
|
|
34018
34018
|
});
|
|
34019
34019
|
};
|
|
34020
|
+
/**
|
|
34021
|
+
* List user agreements
|
|
34022
|
+
* Retrieve a list of user agreements (Terms of Service and Privacy Policy). Supports filtering by agreement type and language with fallback behavior.
|
|
34023
|
+
*/
|
|
34020
34024
|
export const userAgreementsList = (options) => {
|
|
34021
34025
|
return (options?.client ?? _heyApiClient).get({
|
|
34022
34026
|
security: [
|
|
@@ -34034,6 +34038,7 @@ export const userAgreementsList = (options) => {
|
|
|
34034
34038
|
});
|
|
34035
34039
|
};
|
|
34036
34040
|
/**
|
|
34041
|
+
* List user agreements
|
|
34037
34042
|
* Get number of items in the collection matching the request parameters.
|
|
34038
34043
|
*/
|
|
34039
34044
|
export const userAgreementsCount = (options) => {
|
|
@@ -34088,6 +34093,10 @@ export const userAgreementsDestroy = (options) => {
|
|
|
34088
34093
|
...options
|
|
34089
34094
|
});
|
|
34090
34095
|
};
|
|
34096
|
+
/**
|
|
34097
|
+
* Retrieve user agreement
|
|
34098
|
+
* Fetch the details of a specific user agreement by its UUID.
|
|
34099
|
+
*/
|
|
34091
34100
|
export const userAgreementsRetrieve = (options) => {
|
|
34092
34101
|
return (options.client ?? _heyApiClient).get({
|
|
34093
34102
|
security: [
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -58251,6 +58251,10 @@ export type UserAgreementsListData = {
|
|
|
58251
58251
|
path?: never;
|
|
58252
58252
|
query?: {
|
|
58253
58253
|
agreement_type?: 'PP' | 'TOS';
|
|
58254
|
+
/**
|
|
58255
|
+
* ISO 639-1 language code (e.g., 'en', 'de', 'et'). Returns requested language or falls back to default version if unavailable.
|
|
58256
|
+
*/
|
|
58257
|
+
language?: string;
|
|
58254
58258
|
/**
|
|
58255
58259
|
* A page number within the paginated result set.
|
|
58256
58260
|
*/
|
|
@@ -58271,6 +58275,10 @@ export type UserAgreementsCountData = {
|
|
|
58271
58275
|
path?: never;
|
|
58272
58276
|
query?: {
|
|
58273
58277
|
agreement_type?: 'PP' | 'TOS';
|
|
58278
|
+
/**
|
|
58279
|
+
* ISO 639-1 language code (e.g., 'en', 'de', 'et'). Returns requested language or falls back to default version if unavailable.
|
|
58280
|
+
*/
|
|
58281
|
+
language?: string;
|
|
58274
58282
|
/**
|
|
58275
58283
|
* A page number within the paginated result set.
|
|
58276
58284
|
*/
|