@teemill/platform 0.22.0 → 0.22.2

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/esm/api.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Platform API
3
3
  * Manage Your podOS platform
4
4
  *
5
- * The version of the OpenAPI document: 0.22.0
5
+ * The version of the OpenAPI document: 0.22.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -588,13 +588,13 @@ export interface InlineObject {
588
588
  * @type {Array<Domain>}
589
589
  * @memberof InlineObject
590
590
  */
591
- 'domains'?: Array<Domain>;
591
+ 'domains': Array<Domain>;
592
592
  /**
593
593
  *
594
594
  * @type {number}
595
595
  * @memberof InlineObject
596
596
  */
597
- 'nextPageToken'?: number;
597
+ 'nextPageToken': number;
598
598
  }
599
599
  /**
600
600
  *
@@ -2958,35 +2958,39 @@ export declare const PlatformApiAxiosParamCreator: (configuration?: Configuratio
2958
2958
  /**
2959
2959
  * Create a new client platform domain
2960
2960
  * @summary Create a platform client domain
2961
+ * @param {string} project Project unique identifier
2961
2962
  * @param {CreateDomainRequest} [createDomainRequest]
2962
2963
  * @param {*} [options] Override http request option.
2963
2964
  * @throws {RequiredError}
2964
2965
  */
2965
- createClientDomain: (createDomainRequest?: CreateDomainRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2966
+ createClientDomain: (project: string, createDomainRequest?: CreateDomainRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2966
2967
  /**
2967
2968
  * Create a new platform domain
2968
2969
  * @summary Create a platform domain
2970
+ * @param {string} project Project unique identifier
2969
2971
  * @param {CreateDomainRequest} [createDomainRequest]
2970
2972
  * @param {*} [options] Override http request option.
2971
2973
  * @throws {RequiredError}
2972
2974
  */
2973
- createDomain: (createDomainRequest?: CreateDomainRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2975
+ createDomain: (project: string, createDomainRequest?: CreateDomainRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2974
2976
  /**
2975
2977
  * Delete an existing client platform domain
2976
2978
  * @summary Delete a platform client domain
2979
+ * @param {string} project Project unique identifier
2977
2980
  * @param {string} domain The domain identifier
2978
2981
  * @param {*} [options] Override http request option.
2979
2982
  * @throws {RequiredError}
2980
2983
  */
2981
- deleteClientDomain: (domain: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2984
+ deleteClientDomain: (project: string, domain: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2982
2985
  /**
2983
2986
  * Delete an existing platform domain
2984
2987
  * @summary Delete a platform domain
2988
+ * @param {string} project Project unique identifier
2985
2989
  * @param {string} domain The domain identifier
2986
2990
  * @param {*} [options] Override http request option.
2987
2991
  * @throws {RequiredError}
2988
2992
  */
2989
- deleteDomain: (domain: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2993
+ deleteDomain: (project: string, domain: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
2990
2994
  /**
2991
2995
  *
2992
2996
  * @summary Get platform details
@@ -2998,17 +3002,19 @@ export declare const PlatformApiAxiosParamCreator: (configuration?: Configuratio
2998
3002
  /**
2999
3003
  * List the client domains attached to a platform
3000
3004
  * @summary List platform client domains
3005
+ * @param {string} project Project unique identifier
3001
3006
  * @param {*} [options] Override http request option.
3002
3007
  * @throws {RequiredError}
3003
3008
  */
3004
- listClientDomains: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3009
+ listClientDomains: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3005
3010
  /**
3006
3011
  * List the domains attached to a platform
3007
3012
  * @summary List platform domains
3013
+ * @param {string} project Project unique identifier
3008
3014
  * @param {*} [options] Override http request option.
3009
3015
  * @throws {RequiredError}
3010
3016
  */
3011
- listDomains: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3017
+ listDomains: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
3012
3018
  /**
3013
3019
  *
3014
3020
  * @summary Update platform
@@ -3027,35 +3033,39 @@ export declare const PlatformApiFp: (configuration?: Configuration) => {
3027
3033
  /**
3028
3034
  * Create a new client platform domain
3029
3035
  * @summary Create a platform client domain
3036
+ * @param {string} project Project unique identifier
3030
3037
  * @param {CreateDomainRequest} [createDomainRequest]
3031
3038
  * @param {*} [options] Override http request option.
3032
3039
  * @throws {RequiredError}
3033
3040
  */
3034
- createClientDomain(createDomainRequest?: CreateDomainRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Domain>>;
3041
+ createClientDomain(project: string, createDomainRequest?: CreateDomainRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Domain>>;
3035
3042
  /**
3036
3043
  * Create a new platform domain
3037
3044
  * @summary Create a platform domain
3045
+ * @param {string} project Project unique identifier
3038
3046
  * @param {CreateDomainRequest} [createDomainRequest]
3039
3047
  * @param {*} [options] Override http request option.
3040
3048
  * @throws {RequiredError}
3041
3049
  */
3042
- createDomain(createDomainRequest?: CreateDomainRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Domain>>;
3050
+ createDomain(project: string, createDomainRequest?: CreateDomainRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Domain>>;
3043
3051
  /**
3044
3052
  * Delete an existing client platform domain
3045
3053
  * @summary Delete a platform client domain
3054
+ * @param {string} project Project unique identifier
3046
3055
  * @param {string} domain The domain identifier
3047
3056
  * @param {*} [options] Override http request option.
3048
3057
  * @throws {RequiredError}
3049
3058
  */
3050
- deleteClientDomain(domain: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3059
+ deleteClientDomain(project: string, domain: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3051
3060
  /**
3052
3061
  * Delete an existing platform domain
3053
3062
  * @summary Delete a platform domain
3063
+ * @param {string} project Project unique identifier
3054
3064
  * @param {string} domain The domain identifier
3055
3065
  * @param {*} [options] Override http request option.
3056
3066
  * @throws {RequiredError}
3057
3067
  */
3058
- deleteDomain(domain: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3068
+ deleteDomain(project: string, domain: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
3059
3069
  /**
3060
3070
  *
3061
3071
  * @summary Get platform details
@@ -3067,17 +3077,19 @@ export declare const PlatformApiFp: (configuration?: Configuration) => {
3067
3077
  /**
3068
3078
  * List the client domains attached to a platform
3069
3079
  * @summary List platform client domains
3080
+ * @param {string} project Project unique identifier
3070
3081
  * @param {*} [options] Override http request option.
3071
3082
  * @throws {RequiredError}
3072
3083
  */
3073
- listClientDomains(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject>>;
3084
+ listClientDomains(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject>>;
3074
3085
  /**
3075
3086
  * List the domains attached to a platform
3076
3087
  * @summary List platform domains
3088
+ * @param {string} project Project unique identifier
3077
3089
  * @param {*} [options] Override http request option.
3078
3090
  * @throws {RequiredError}
3079
3091
  */
3080
- listDomains(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject>>;
3092
+ listDomains(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject>>;
3081
3093
  /**
3082
3094
  *
3083
3095
  * @summary Update platform
@@ -3100,7 +3112,7 @@ export declare const PlatformApiFactory: (configuration?: Configuration, basePat
3100
3112
  * @param {*} [options] Override http request option.
3101
3113
  * @throws {RequiredError}
3102
3114
  */
3103
- createClientDomain(requestParameters?: PlatformApiCreateClientDomainRequest, options?: RawAxiosRequestConfig): AxiosPromise<Domain>;
3115
+ createClientDomain(requestParameters: PlatformApiCreateClientDomainRequest, options?: RawAxiosRequestConfig): AxiosPromise<Domain>;
3104
3116
  /**
3105
3117
  * Create a new platform domain
3106
3118
  * @summary Create a platform domain
@@ -3108,7 +3120,7 @@ export declare const PlatformApiFactory: (configuration?: Configuration, basePat
3108
3120
  * @param {*} [options] Override http request option.
3109
3121
  * @throws {RequiredError}
3110
3122
  */
3111
- createDomain(requestParameters?: PlatformApiCreateDomainRequest, options?: RawAxiosRequestConfig): AxiosPromise<Domain>;
3123
+ createDomain(requestParameters: PlatformApiCreateDomainRequest, options?: RawAxiosRequestConfig): AxiosPromise<Domain>;
3112
3124
  /**
3113
3125
  * Delete an existing client platform domain
3114
3126
  * @summary Delete a platform client domain
@@ -3136,17 +3148,19 @@ export declare const PlatformApiFactory: (configuration?: Configuration, basePat
3136
3148
  /**
3137
3149
  * List the client domains attached to a platform
3138
3150
  * @summary List platform client domains
3151
+ * @param {PlatformApiListClientDomainsRequest} requestParameters Request parameters.
3139
3152
  * @param {*} [options] Override http request option.
3140
3153
  * @throws {RequiredError}
3141
3154
  */
3142
- listClientDomains(options?: RawAxiosRequestConfig): AxiosPromise<InlineObject>;
3155
+ listClientDomains(requestParameters: PlatformApiListClientDomainsRequest, options?: RawAxiosRequestConfig): AxiosPromise<InlineObject>;
3143
3156
  /**
3144
3157
  * List the domains attached to a platform
3145
3158
  * @summary List platform domains
3159
+ * @param {PlatformApiListDomainsRequest} requestParameters Request parameters.
3146
3160
  * @param {*} [options] Override http request option.
3147
3161
  * @throws {RequiredError}
3148
3162
  */
3149
- listDomains(options?: RawAxiosRequestConfig): AxiosPromise<InlineObject>;
3163
+ listDomains(requestParameters: PlatformApiListDomainsRequest, options?: RawAxiosRequestConfig): AxiosPromise<InlineObject>;
3150
3164
  /**
3151
3165
  *
3152
3166
  * @summary Update platform
@@ -3162,6 +3176,12 @@ export declare const PlatformApiFactory: (configuration?: Configuration, basePat
3162
3176
  * @interface PlatformApiCreateClientDomainRequest
3163
3177
  */
3164
3178
  export interface PlatformApiCreateClientDomainRequest {
3179
+ /**
3180
+ * Project unique identifier
3181
+ * @type {string}
3182
+ * @memberof PlatformApiCreateClientDomain
3183
+ */
3184
+ readonly project: string;
3165
3185
  /**
3166
3186
  *
3167
3187
  * @type {CreateDomainRequest}
@@ -3175,6 +3195,12 @@ export interface PlatformApiCreateClientDomainRequest {
3175
3195
  * @interface PlatformApiCreateDomainRequest
3176
3196
  */
3177
3197
  export interface PlatformApiCreateDomainRequest {
3198
+ /**
3199
+ * Project unique identifier
3200
+ * @type {string}
3201
+ * @memberof PlatformApiCreateDomain
3202
+ */
3203
+ readonly project: string;
3178
3204
  /**
3179
3205
  *
3180
3206
  * @type {CreateDomainRequest}
@@ -3188,6 +3214,12 @@ export interface PlatformApiCreateDomainRequest {
3188
3214
  * @interface PlatformApiDeleteClientDomainRequest
3189
3215
  */
3190
3216
  export interface PlatformApiDeleteClientDomainRequest {
3217
+ /**
3218
+ * Project unique identifier
3219
+ * @type {string}
3220
+ * @memberof PlatformApiDeleteClientDomain
3221
+ */
3222
+ readonly project: string;
3191
3223
  /**
3192
3224
  * The domain identifier
3193
3225
  * @type {string}
@@ -3201,6 +3233,12 @@ export interface PlatformApiDeleteClientDomainRequest {
3201
3233
  * @interface PlatformApiDeleteDomainRequest
3202
3234
  */
3203
3235
  export interface PlatformApiDeleteDomainRequest {
3236
+ /**
3237
+ * Project unique identifier
3238
+ * @type {string}
3239
+ * @memberof PlatformApiDeleteDomain
3240
+ */
3241
+ readonly project: string;
3204
3242
  /**
3205
3243
  * The domain identifier
3206
3244
  * @type {string}
@@ -3221,6 +3259,32 @@ export interface PlatformApiGetPlatformRequest {
3221
3259
  */
3222
3260
  readonly project: string;
3223
3261
  }
3262
+ /**
3263
+ * Request parameters for listClientDomains operation in PlatformApi.
3264
+ * @export
3265
+ * @interface PlatformApiListClientDomainsRequest
3266
+ */
3267
+ export interface PlatformApiListClientDomainsRequest {
3268
+ /**
3269
+ * Project unique identifier
3270
+ * @type {string}
3271
+ * @memberof PlatformApiListClientDomains
3272
+ */
3273
+ readonly project: string;
3274
+ }
3275
+ /**
3276
+ * Request parameters for listDomains operation in PlatformApi.
3277
+ * @export
3278
+ * @interface PlatformApiListDomainsRequest
3279
+ */
3280
+ export interface PlatformApiListDomainsRequest {
3281
+ /**
3282
+ * Project unique identifier
3283
+ * @type {string}
3284
+ * @memberof PlatformApiListDomains
3285
+ */
3286
+ readonly project: string;
3287
+ }
3224
3288
  /**
3225
3289
  * Request parameters for updatePlatform operation in PlatformApi.
3226
3290
  * @export
@@ -3255,7 +3319,7 @@ export declare class PlatformApi extends BaseAPI {
3255
3319
  * @throws {RequiredError}
3256
3320
  * @memberof PlatformApi
3257
3321
  */
3258
- createClientDomain(requestParameters?: PlatformApiCreateClientDomainRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Domain, any>>;
3322
+ createClientDomain(requestParameters: PlatformApiCreateClientDomainRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Domain, any>>;
3259
3323
  /**
3260
3324
  * Create a new platform domain
3261
3325
  * @summary Create a platform domain
@@ -3264,7 +3328,7 @@ export declare class PlatformApi extends BaseAPI {
3264
3328
  * @throws {RequiredError}
3265
3329
  * @memberof PlatformApi
3266
3330
  */
3267
- createDomain(requestParameters?: PlatformApiCreateDomainRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Domain, any>>;
3331
+ createDomain(requestParameters: PlatformApiCreateDomainRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Domain, any>>;
3268
3332
  /**
3269
3333
  * Delete an existing client platform domain
3270
3334
  * @summary Delete a platform client domain
@@ -3295,19 +3359,21 @@ export declare class PlatformApi extends BaseAPI {
3295
3359
  /**
3296
3360
  * List the client domains attached to a platform
3297
3361
  * @summary List platform client domains
3362
+ * @param {PlatformApiListClientDomainsRequest} requestParameters Request parameters.
3298
3363
  * @param {*} [options] Override http request option.
3299
3364
  * @throws {RequiredError}
3300
3365
  * @memberof PlatformApi
3301
3366
  */
3302
- listClientDomains(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineObject, any>>;
3367
+ listClientDomains(requestParameters: PlatformApiListClientDomainsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineObject, any>>;
3303
3368
  /**
3304
3369
  * List the domains attached to a platform
3305
3370
  * @summary List platform domains
3371
+ * @param {PlatformApiListDomainsRequest} requestParameters Request parameters.
3306
3372
  * @param {*} [options] Override http request option.
3307
3373
  * @throws {RequiredError}
3308
3374
  * @memberof PlatformApi
3309
3375
  */
3310
- listDomains(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineObject, any>>;
3376
+ listDomains(requestParameters: PlatformApiListDomainsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineObject, any>>;
3311
3377
  /**
3312
3378
  *
3313
3379
  * @summary Update platform