@teemill/platform 0.21.0 → 0.22.1
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/README.md +12 -3
- package/api.ts +685 -16
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +388 -17
- package/dist/api.js +457 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +388 -17
- package/dist/esm/api.js +457 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/CreateDomainRequest.md +20 -0
- package/docs/Domain.md +26 -0
- package/docs/InlineObject.md +22 -0
- package/docs/InlineObject1.md +20 -0
- package/docs/PaymentApi.md +2 -2
- package/docs/PlatformApi.md +356 -0
- package/index.ts +1 -1
- package/package.json +1 -1
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.
|
|
5
|
+
* The version of the OpenAPI document: 0.22.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -87,19 +87,6 @@ export interface ApiError {
|
|
|
87
87
|
*/
|
|
88
88
|
'message': string;
|
|
89
89
|
}
|
|
90
|
-
/**
|
|
91
|
-
*
|
|
92
|
-
* @export
|
|
93
|
-
* @interface AuthorizeStripe200Response
|
|
94
|
-
*/
|
|
95
|
-
export interface AuthorizeStripe200Response {
|
|
96
|
-
/**
|
|
97
|
-
* The URL to redirect to
|
|
98
|
-
* @type {string}
|
|
99
|
-
* @memberof AuthorizeStripe200Response
|
|
100
|
-
*/
|
|
101
|
-
'redirect_url': string;
|
|
102
|
-
}
|
|
103
90
|
/**
|
|
104
91
|
*
|
|
105
92
|
* @export
|
|
@@ -163,6 +150,19 @@ export interface Coupon {
|
|
|
163
150
|
*/
|
|
164
151
|
'code': string;
|
|
165
152
|
}
|
|
153
|
+
/**
|
|
154
|
+
*
|
|
155
|
+
* @export
|
|
156
|
+
* @interface CreateDomainRequest
|
|
157
|
+
*/
|
|
158
|
+
export interface CreateDomainRequest {
|
|
159
|
+
/**
|
|
160
|
+
*
|
|
161
|
+
* @type {string}
|
|
162
|
+
* @memberof CreateDomainRequest
|
|
163
|
+
*/
|
|
164
|
+
'domain'?: string;
|
|
165
|
+
}
|
|
166
166
|
/**
|
|
167
167
|
* The customer that has placed an order on your platform
|
|
168
168
|
* @export
|
|
@@ -250,6 +250,37 @@ export interface DeliveryEstimates {
|
|
|
250
250
|
*/
|
|
251
251
|
'max'?: string;
|
|
252
252
|
}
|
|
253
|
+
/**
|
|
254
|
+
*
|
|
255
|
+
* @export
|
|
256
|
+
* @interface Domain
|
|
257
|
+
*/
|
|
258
|
+
export interface Domain {
|
|
259
|
+
/**
|
|
260
|
+
*
|
|
261
|
+
* @type {number}
|
|
262
|
+
* @memberof Domain
|
|
263
|
+
*/
|
|
264
|
+
'id': number;
|
|
265
|
+
/**
|
|
266
|
+
*
|
|
267
|
+
* @type {string}
|
|
268
|
+
* @memberof Domain
|
|
269
|
+
*/
|
|
270
|
+
'name': string;
|
|
271
|
+
/**
|
|
272
|
+
*
|
|
273
|
+
* @type {number}
|
|
274
|
+
* @memberof Domain
|
|
275
|
+
*/
|
|
276
|
+
'priority': number;
|
|
277
|
+
/**
|
|
278
|
+
*
|
|
279
|
+
* @type {string}
|
|
280
|
+
* @memberof Domain
|
|
281
|
+
*/
|
|
282
|
+
'enabledAt': string | null;
|
|
283
|
+
}
|
|
253
284
|
/**
|
|
254
285
|
*
|
|
255
286
|
* @export
|
|
@@ -546,6 +577,38 @@ export interface Image {
|
|
|
546
577
|
*/
|
|
547
578
|
'sortOrder'?: number;
|
|
548
579
|
}
|
|
580
|
+
/**
|
|
581
|
+
*
|
|
582
|
+
* @export
|
|
583
|
+
* @interface InlineObject
|
|
584
|
+
*/
|
|
585
|
+
export interface InlineObject {
|
|
586
|
+
/**
|
|
587
|
+
*
|
|
588
|
+
* @type {Array<Domain>}
|
|
589
|
+
* @memberof InlineObject
|
|
590
|
+
*/
|
|
591
|
+
'domains'?: Array<Domain>;
|
|
592
|
+
/**
|
|
593
|
+
*
|
|
594
|
+
* @type {number}
|
|
595
|
+
* @memberof InlineObject
|
|
596
|
+
*/
|
|
597
|
+
'nextPageToken'?: number;
|
|
598
|
+
}
|
|
599
|
+
/**
|
|
600
|
+
*
|
|
601
|
+
* @export
|
|
602
|
+
* @interface InlineObject1
|
|
603
|
+
*/
|
|
604
|
+
export interface InlineObject1 {
|
|
605
|
+
/**
|
|
606
|
+
* The URL to redirect to
|
|
607
|
+
* @type {string}
|
|
608
|
+
* @memberof InlineObject1
|
|
609
|
+
*/
|
|
610
|
+
'redirect_url': string;
|
|
611
|
+
}
|
|
549
612
|
/**
|
|
550
613
|
*
|
|
551
614
|
* @export
|
|
@@ -2765,7 +2828,7 @@ export declare const PaymentApiFp: (configuration?: Configuration) => {
|
|
|
2765
2828
|
* @param {*} [options] Override http request option.
|
|
2766
2829
|
* @throws {RequiredError}
|
|
2767
2830
|
*/
|
|
2768
|
-
authorizeStripe(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2831
|
+
authorizeStripe(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject1>>;
|
|
2769
2832
|
/**
|
|
2770
2833
|
* Deauthorize a Stripe payment account
|
|
2771
2834
|
* @summary Deauthorize Stripe
|
|
@@ -2795,7 +2858,7 @@ export declare const PaymentApiFactory: (configuration?: Configuration, basePath
|
|
|
2795
2858
|
* @param {*} [options] Override http request option.
|
|
2796
2859
|
* @throws {RequiredError}
|
|
2797
2860
|
*/
|
|
2798
|
-
authorizeStripe(requestParameters: PaymentApiAuthorizeStripeRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2861
|
+
authorizeStripe(requestParameters: PaymentApiAuthorizeStripeRequest, options?: RawAxiosRequestConfig): AxiosPromise<InlineObject1>;
|
|
2799
2862
|
/**
|
|
2800
2863
|
* Deauthorize a Stripe payment account
|
|
2801
2864
|
* @summary Deauthorize Stripe
|
|
@@ -2867,7 +2930,7 @@ export declare class PaymentApi extends BaseAPI {
|
|
|
2867
2930
|
* @throws {RequiredError}
|
|
2868
2931
|
* @memberof PaymentApi
|
|
2869
2932
|
*/
|
|
2870
|
-
authorizeStripe(requestParameters: PaymentApiAuthorizeStripeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
2933
|
+
authorizeStripe(requestParameters: PaymentApiAuthorizeStripeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineObject1, any>>;
|
|
2871
2934
|
/**
|
|
2872
2935
|
* Deauthorize a Stripe payment account
|
|
2873
2936
|
* @summary Deauthorize Stripe
|
|
@@ -2892,6 +2955,42 @@ export declare class PaymentApi extends BaseAPI {
|
|
|
2892
2955
|
* @export
|
|
2893
2956
|
*/
|
|
2894
2957
|
export declare const PlatformApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2958
|
+
/**
|
|
2959
|
+
* Create a new client platform domain
|
|
2960
|
+
* @summary Create a platform client domain
|
|
2961
|
+
* @param {string} project Project unique identifier
|
|
2962
|
+
* @param {CreateDomainRequest} [createDomainRequest]
|
|
2963
|
+
* @param {*} [options] Override http request option.
|
|
2964
|
+
* @throws {RequiredError}
|
|
2965
|
+
*/
|
|
2966
|
+
createClientDomain: (project: string, createDomainRequest?: CreateDomainRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2967
|
+
/**
|
|
2968
|
+
* Create a new platform domain
|
|
2969
|
+
* @summary Create a platform domain
|
|
2970
|
+
* @param {string} project Project unique identifier
|
|
2971
|
+
* @param {CreateDomainRequest} [createDomainRequest]
|
|
2972
|
+
* @param {*} [options] Override http request option.
|
|
2973
|
+
* @throws {RequiredError}
|
|
2974
|
+
*/
|
|
2975
|
+
createDomain: (project: string, createDomainRequest?: CreateDomainRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2976
|
+
/**
|
|
2977
|
+
* Delete an existing client platform domain
|
|
2978
|
+
* @summary Delete a platform client domain
|
|
2979
|
+
* @param {string} project Project unique identifier
|
|
2980
|
+
* @param {string} domain The domain identifier
|
|
2981
|
+
* @param {*} [options] Override http request option.
|
|
2982
|
+
* @throws {RequiredError}
|
|
2983
|
+
*/
|
|
2984
|
+
deleteClientDomain: (project: string, domain: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2985
|
+
/**
|
|
2986
|
+
* Delete an existing platform domain
|
|
2987
|
+
* @summary Delete a platform domain
|
|
2988
|
+
* @param {string} project Project unique identifier
|
|
2989
|
+
* @param {string} domain The domain identifier
|
|
2990
|
+
* @param {*} [options] Override http request option.
|
|
2991
|
+
* @throws {RequiredError}
|
|
2992
|
+
*/
|
|
2993
|
+
deleteDomain: (project: string, domain: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2895
2994
|
/**
|
|
2896
2995
|
*
|
|
2897
2996
|
* @summary Get platform details
|
|
@@ -2900,6 +2999,22 @@ export declare const PlatformApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
2900
2999
|
* @throws {RequiredError}
|
|
2901
3000
|
*/
|
|
2902
3001
|
getPlatform: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3002
|
+
/**
|
|
3003
|
+
* List the client domains attached to a platform
|
|
3004
|
+
* @summary List platform client domains
|
|
3005
|
+
* @param {string} project Project unique identifier
|
|
3006
|
+
* @param {*} [options] Override http request option.
|
|
3007
|
+
* @throws {RequiredError}
|
|
3008
|
+
*/
|
|
3009
|
+
listClientDomains: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
3010
|
+
/**
|
|
3011
|
+
* List the domains attached to a platform
|
|
3012
|
+
* @summary List platform domains
|
|
3013
|
+
* @param {string} project Project unique identifier
|
|
3014
|
+
* @param {*} [options] Override http request option.
|
|
3015
|
+
* @throws {RequiredError}
|
|
3016
|
+
*/
|
|
3017
|
+
listDomains: (project: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2903
3018
|
/**
|
|
2904
3019
|
*
|
|
2905
3020
|
* @summary Update platform
|
|
@@ -2915,6 +3030,42 @@ export declare const PlatformApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
2915
3030
|
* @export
|
|
2916
3031
|
*/
|
|
2917
3032
|
export declare const PlatformApiFp: (configuration?: Configuration) => {
|
|
3033
|
+
/**
|
|
3034
|
+
* Create a new client platform domain
|
|
3035
|
+
* @summary Create a platform client domain
|
|
3036
|
+
* @param {string} project Project unique identifier
|
|
3037
|
+
* @param {CreateDomainRequest} [createDomainRequest]
|
|
3038
|
+
* @param {*} [options] Override http request option.
|
|
3039
|
+
* @throws {RequiredError}
|
|
3040
|
+
*/
|
|
3041
|
+
createClientDomain(project: string, createDomainRequest?: CreateDomainRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Domain>>;
|
|
3042
|
+
/**
|
|
3043
|
+
* Create a new platform domain
|
|
3044
|
+
* @summary Create a platform domain
|
|
3045
|
+
* @param {string} project Project unique identifier
|
|
3046
|
+
* @param {CreateDomainRequest} [createDomainRequest]
|
|
3047
|
+
* @param {*} [options] Override http request option.
|
|
3048
|
+
* @throws {RequiredError}
|
|
3049
|
+
*/
|
|
3050
|
+
createDomain(project: string, createDomainRequest?: CreateDomainRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Domain>>;
|
|
3051
|
+
/**
|
|
3052
|
+
* Delete an existing client platform domain
|
|
3053
|
+
* @summary Delete a platform client domain
|
|
3054
|
+
* @param {string} project Project unique identifier
|
|
3055
|
+
* @param {string} domain The domain identifier
|
|
3056
|
+
* @param {*} [options] Override http request option.
|
|
3057
|
+
* @throws {RequiredError}
|
|
3058
|
+
*/
|
|
3059
|
+
deleteClientDomain(project: string, domain: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
3060
|
+
/**
|
|
3061
|
+
* Delete an existing platform domain
|
|
3062
|
+
* @summary Delete a platform domain
|
|
3063
|
+
* @param {string} project Project unique identifier
|
|
3064
|
+
* @param {string} domain The domain identifier
|
|
3065
|
+
* @param {*} [options] Override http request option.
|
|
3066
|
+
* @throws {RequiredError}
|
|
3067
|
+
*/
|
|
3068
|
+
deleteDomain(project: string, domain: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
2918
3069
|
/**
|
|
2919
3070
|
*
|
|
2920
3071
|
* @summary Get platform details
|
|
@@ -2923,6 +3074,22 @@ export declare const PlatformApiFp: (configuration?: Configuration) => {
|
|
|
2923
3074
|
* @throws {RequiredError}
|
|
2924
3075
|
*/
|
|
2925
3076
|
getPlatform(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Platform>>;
|
|
3077
|
+
/**
|
|
3078
|
+
* List the client domains attached to a platform
|
|
3079
|
+
* @summary List platform client domains
|
|
3080
|
+
* @param {string} project Project unique identifier
|
|
3081
|
+
* @param {*} [options] Override http request option.
|
|
3082
|
+
* @throws {RequiredError}
|
|
3083
|
+
*/
|
|
3084
|
+
listClientDomains(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject>>;
|
|
3085
|
+
/**
|
|
3086
|
+
* List the domains attached to a platform
|
|
3087
|
+
* @summary List platform domains
|
|
3088
|
+
* @param {string} project Project unique identifier
|
|
3089
|
+
* @param {*} [options] Override http request option.
|
|
3090
|
+
* @throws {RequiredError}
|
|
3091
|
+
*/
|
|
3092
|
+
listDomains(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InlineObject>>;
|
|
2926
3093
|
/**
|
|
2927
3094
|
*
|
|
2928
3095
|
* @summary Update platform
|
|
@@ -2938,6 +3105,38 @@ export declare const PlatformApiFp: (configuration?: Configuration) => {
|
|
|
2938
3105
|
* @export
|
|
2939
3106
|
*/
|
|
2940
3107
|
export declare const PlatformApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3108
|
+
/**
|
|
3109
|
+
* Create a new client platform domain
|
|
3110
|
+
* @summary Create a platform client domain
|
|
3111
|
+
* @param {PlatformApiCreateClientDomainRequest} requestParameters Request parameters.
|
|
3112
|
+
* @param {*} [options] Override http request option.
|
|
3113
|
+
* @throws {RequiredError}
|
|
3114
|
+
*/
|
|
3115
|
+
createClientDomain(requestParameters: PlatformApiCreateClientDomainRequest, options?: RawAxiosRequestConfig): AxiosPromise<Domain>;
|
|
3116
|
+
/**
|
|
3117
|
+
* Create a new platform domain
|
|
3118
|
+
* @summary Create a platform domain
|
|
3119
|
+
* @param {PlatformApiCreateDomainRequest} requestParameters Request parameters.
|
|
3120
|
+
* @param {*} [options] Override http request option.
|
|
3121
|
+
* @throws {RequiredError}
|
|
3122
|
+
*/
|
|
3123
|
+
createDomain(requestParameters: PlatformApiCreateDomainRequest, options?: RawAxiosRequestConfig): AxiosPromise<Domain>;
|
|
3124
|
+
/**
|
|
3125
|
+
* Delete an existing client platform domain
|
|
3126
|
+
* @summary Delete a platform client domain
|
|
3127
|
+
* @param {PlatformApiDeleteClientDomainRequest} requestParameters Request parameters.
|
|
3128
|
+
* @param {*} [options] Override http request option.
|
|
3129
|
+
* @throws {RequiredError}
|
|
3130
|
+
*/
|
|
3131
|
+
deleteClientDomain(requestParameters: PlatformApiDeleteClientDomainRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
3132
|
+
/**
|
|
3133
|
+
* Delete an existing platform domain
|
|
3134
|
+
* @summary Delete a platform domain
|
|
3135
|
+
* @param {PlatformApiDeleteDomainRequest} requestParameters Request parameters.
|
|
3136
|
+
* @param {*} [options] Override http request option.
|
|
3137
|
+
* @throws {RequiredError}
|
|
3138
|
+
*/
|
|
3139
|
+
deleteDomain(requestParameters: PlatformApiDeleteDomainRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
2941
3140
|
/**
|
|
2942
3141
|
*
|
|
2943
3142
|
* @summary Get platform details
|
|
@@ -2946,6 +3145,22 @@ export declare const PlatformApiFactory: (configuration?: Configuration, basePat
|
|
|
2946
3145
|
* @throws {RequiredError}
|
|
2947
3146
|
*/
|
|
2948
3147
|
getPlatform(requestParameters: PlatformApiGetPlatformRequest, options?: RawAxiosRequestConfig): AxiosPromise<Platform>;
|
|
3148
|
+
/**
|
|
3149
|
+
* List the client domains attached to a platform
|
|
3150
|
+
* @summary List platform client domains
|
|
3151
|
+
* @param {PlatformApiListClientDomainsRequest} requestParameters Request parameters.
|
|
3152
|
+
* @param {*} [options] Override http request option.
|
|
3153
|
+
* @throws {RequiredError}
|
|
3154
|
+
*/
|
|
3155
|
+
listClientDomains(requestParameters: PlatformApiListClientDomainsRequest, options?: RawAxiosRequestConfig): AxiosPromise<InlineObject>;
|
|
3156
|
+
/**
|
|
3157
|
+
* List the domains attached to a platform
|
|
3158
|
+
* @summary List platform domains
|
|
3159
|
+
* @param {PlatformApiListDomainsRequest} requestParameters Request parameters.
|
|
3160
|
+
* @param {*} [options] Override http request option.
|
|
3161
|
+
* @throws {RequiredError}
|
|
3162
|
+
*/
|
|
3163
|
+
listDomains(requestParameters: PlatformApiListDomainsRequest, options?: RawAxiosRequestConfig): AxiosPromise<InlineObject>;
|
|
2949
3164
|
/**
|
|
2950
3165
|
*
|
|
2951
3166
|
* @summary Update platform
|
|
@@ -2955,6 +3170,82 @@ export declare const PlatformApiFactory: (configuration?: Configuration, basePat
|
|
|
2955
3170
|
*/
|
|
2956
3171
|
updatePlatform(requestParameters: PlatformApiUpdatePlatformRequest, options?: RawAxiosRequestConfig): AxiosPromise<Platform>;
|
|
2957
3172
|
};
|
|
3173
|
+
/**
|
|
3174
|
+
* Request parameters for createClientDomain operation in PlatformApi.
|
|
3175
|
+
* @export
|
|
3176
|
+
* @interface PlatformApiCreateClientDomainRequest
|
|
3177
|
+
*/
|
|
3178
|
+
export interface PlatformApiCreateClientDomainRequest {
|
|
3179
|
+
/**
|
|
3180
|
+
* Project unique identifier
|
|
3181
|
+
* @type {string}
|
|
3182
|
+
* @memberof PlatformApiCreateClientDomain
|
|
3183
|
+
*/
|
|
3184
|
+
readonly project: string;
|
|
3185
|
+
/**
|
|
3186
|
+
*
|
|
3187
|
+
* @type {CreateDomainRequest}
|
|
3188
|
+
* @memberof PlatformApiCreateClientDomain
|
|
3189
|
+
*/
|
|
3190
|
+
readonly createDomainRequest?: CreateDomainRequest;
|
|
3191
|
+
}
|
|
3192
|
+
/**
|
|
3193
|
+
* Request parameters for createDomain operation in PlatformApi.
|
|
3194
|
+
* @export
|
|
3195
|
+
* @interface PlatformApiCreateDomainRequest
|
|
3196
|
+
*/
|
|
3197
|
+
export interface PlatformApiCreateDomainRequest {
|
|
3198
|
+
/**
|
|
3199
|
+
* Project unique identifier
|
|
3200
|
+
* @type {string}
|
|
3201
|
+
* @memberof PlatformApiCreateDomain
|
|
3202
|
+
*/
|
|
3203
|
+
readonly project: string;
|
|
3204
|
+
/**
|
|
3205
|
+
*
|
|
3206
|
+
* @type {CreateDomainRequest}
|
|
3207
|
+
* @memberof PlatformApiCreateDomain
|
|
3208
|
+
*/
|
|
3209
|
+
readonly createDomainRequest?: CreateDomainRequest;
|
|
3210
|
+
}
|
|
3211
|
+
/**
|
|
3212
|
+
* Request parameters for deleteClientDomain operation in PlatformApi.
|
|
3213
|
+
* @export
|
|
3214
|
+
* @interface PlatformApiDeleteClientDomainRequest
|
|
3215
|
+
*/
|
|
3216
|
+
export interface PlatformApiDeleteClientDomainRequest {
|
|
3217
|
+
/**
|
|
3218
|
+
* Project unique identifier
|
|
3219
|
+
* @type {string}
|
|
3220
|
+
* @memberof PlatformApiDeleteClientDomain
|
|
3221
|
+
*/
|
|
3222
|
+
readonly project: string;
|
|
3223
|
+
/**
|
|
3224
|
+
* The domain identifier
|
|
3225
|
+
* @type {string}
|
|
3226
|
+
* @memberof PlatformApiDeleteClientDomain
|
|
3227
|
+
*/
|
|
3228
|
+
readonly domain: string;
|
|
3229
|
+
}
|
|
3230
|
+
/**
|
|
3231
|
+
* Request parameters for deleteDomain operation in PlatformApi.
|
|
3232
|
+
* @export
|
|
3233
|
+
* @interface PlatformApiDeleteDomainRequest
|
|
3234
|
+
*/
|
|
3235
|
+
export interface PlatformApiDeleteDomainRequest {
|
|
3236
|
+
/**
|
|
3237
|
+
* Project unique identifier
|
|
3238
|
+
* @type {string}
|
|
3239
|
+
* @memberof PlatformApiDeleteDomain
|
|
3240
|
+
*/
|
|
3241
|
+
readonly project: string;
|
|
3242
|
+
/**
|
|
3243
|
+
* The domain identifier
|
|
3244
|
+
* @type {string}
|
|
3245
|
+
* @memberof PlatformApiDeleteDomain
|
|
3246
|
+
*/
|
|
3247
|
+
readonly domain: string;
|
|
3248
|
+
}
|
|
2958
3249
|
/**
|
|
2959
3250
|
* Request parameters for getPlatform operation in PlatformApi.
|
|
2960
3251
|
* @export
|
|
@@ -2968,6 +3259,32 @@ export interface PlatformApiGetPlatformRequest {
|
|
|
2968
3259
|
*/
|
|
2969
3260
|
readonly project: string;
|
|
2970
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
|
+
}
|
|
2971
3288
|
/**
|
|
2972
3289
|
* Request parameters for updatePlatform operation in PlatformApi.
|
|
2973
3290
|
* @export
|
|
@@ -2994,6 +3311,42 @@ export interface PlatformApiUpdatePlatformRequest {
|
|
|
2994
3311
|
* @extends {BaseAPI}
|
|
2995
3312
|
*/
|
|
2996
3313
|
export declare class PlatformApi extends BaseAPI {
|
|
3314
|
+
/**
|
|
3315
|
+
* Create a new client platform domain
|
|
3316
|
+
* @summary Create a platform client domain
|
|
3317
|
+
* @param {PlatformApiCreateClientDomainRequest} requestParameters Request parameters.
|
|
3318
|
+
* @param {*} [options] Override http request option.
|
|
3319
|
+
* @throws {RequiredError}
|
|
3320
|
+
* @memberof PlatformApi
|
|
3321
|
+
*/
|
|
3322
|
+
createClientDomain(requestParameters: PlatformApiCreateClientDomainRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Domain, any>>;
|
|
3323
|
+
/**
|
|
3324
|
+
* Create a new platform domain
|
|
3325
|
+
* @summary Create a platform domain
|
|
3326
|
+
* @param {PlatformApiCreateDomainRequest} requestParameters Request parameters.
|
|
3327
|
+
* @param {*} [options] Override http request option.
|
|
3328
|
+
* @throws {RequiredError}
|
|
3329
|
+
* @memberof PlatformApi
|
|
3330
|
+
*/
|
|
3331
|
+
createDomain(requestParameters: PlatformApiCreateDomainRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Domain, any>>;
|
|
3332
|
+
/**
|
|
3333
|
+
* Delete an existing client platform domain
|
|
3334
|
+
* @summary Delete a platform client domain
|
|
3335
|
+
* @param {PlatformApiDeleteClientDomainRequest} requestParameters Request parameters.
|
|
3336
|
+
* @param {*} [options] Override http request option.
|
|
3337
|
+
* @throws {RequiredError}
|
|
3338
|
+
* @memberof PlatformApi
|
|
3339
|
+
*/
|
|
3340
|
+
deleteClientDomain(requestParameters: PlatformApiDeleteClientDomainRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
3341
|
+
/**
|
|
3342
|
+
* Delete an existing platform domain
|
|
3343
|
+
* @summary Delete a platform domain
|
|
3344
|
+
* @param {PlatformApiDeleteDomainRequest} requestParameters Request parameters.
|
|
3345
|
+
* @param {*} [options] Override http request option.
|
|
3346
|
+
* @throws {RequiredError}
|
|
3347
|
+
* @memberof PlatformApi
|
|
3348
|
+
*/
|
|
3349
|
+
deleteDomain(requestParameters: PlatformApiDeleteDomainRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
2997
3350
|
/**
|
|
2998
3351
|
*
|
|
2999
3352
|
* @summary Get platform details
|
|
@@ -3003,6 +3356,24 @@ export declare class PlatformApi extends BaseAPI {
|
|
|
3003
3356
|
* @memberof PlatformApi
|
|
3004
3357
|
*/
|
|
3005
3358
|
getPlatform(requestParameters: PlatformApiGetPlatformRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Platform, any>>;
|
|
3359
|
+
/**
|
|
3360
|
+
* List the client domains attached to a platform
|
|
3361
|
+
* @summary List platform client domains
|
|
3362
|
+
* @param {PlatformApiListClientDomainsRequest} requestParameters Request parameters.
|
|
3363
|
+
* @param {*} [options] Override http request option.
|
|
3364
|
+
* @throws {RequiredError}
|
|
3365
|
+
* @memberof PlatformApi
|
|
3366
|
+
*/
|
|
3367
|
+
listClientDomains(requestParameters: PlatformApiListClientDomainsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineObject, any>>;
|
|
3368
|
+
/**
|
|
3369
|
+
* List the domains attached to a platform
|
|
3370
|
+
* @summary List platform domains
|
|
3371
|
+
* @param {PlatformApiListDomainsRequest} requestParameters Request parameters.
|
|
3372
|
+
* @param {*} [options] Override http request option.
|
|
3373
|
+
* @throws {RequiredError}
|
|
3374
|
+
* @memberof PlatformApi
|
|
3375
|
+
*/
|
|
3376
|
+
listDomains(requestParameters: PlatformApiListDomainsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InlineObject, any>>;
|
|
3006
3377
|
/**
|
|
3007
3378
|
*
|
|
3008
3379
|
* @summary Update platform
|