@opusdns/api 0.271.0 → 0.272.0
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/package.json +1 -1
- package/src/helpers/requests.d.ts +108 -108
- package/src/helpers/responses.d.ts +160 -160
- package/src/openapi.yaml +151 -151
- package/src/schema.d.ts +100 -100
|
@@ -8969,202 +8969,179 @@ export type PATCH_OrganizationsAttributes_Response_403 = Problem
|
|
|
8969
8969
|
export type PATCH_OrganizationsAttributes_Response_422 = HTTPValidationError
|
|
8970
8970
|
|
|
8971
8971
|
/**
|
|
8972
|
-
* Response types for
|
|
8972
|
+
* Response types for DELETE OrganizationsByOrganizationId endpoint
|
|
8973
8973
|
*
|
|
8974
|
-
*
|
|
8975
|
-
*
|
|
8974
|
+
* Delete an organization
|
|
8975
|
+
* Permanently deletes an organization
|
|
8976
8976
|
*
|
|
8977
8977
|
* @remarks
|
|
8978
|
-
* This type defines all possible response structures for the
|
|
8978
|
+
* This type defines all possible response structures for the DELETE OrganizationsByOrganizationId endpoint.
|
|
8979
8979
|
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
8980
8980
|
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
8981
8981
|
*
|
|
8982
8982
|
|
|
8983
8983
|
*
|
|
8984
|
-
* @path /v1/organizations/
|
|
8985
|
-
* @param keys (query) - Optional list of attribute keys to filter
|
|
8986
|
-
*
|
|
8987
|
-
* @see {@link GET_OrganizationsAttributesByOrganizationId_Response_200} - 200 response type
|
|
8988
|
-
* @see {@link GET_OrganizationsAttributesByOrganizationId_Response_401} - 401 response type
|
|
8989
|
-
* @see {@link GET_OrganizationsAttributesByOrganizationId_Response_403} - 403 response type
|
|
8990
|
-
* @see {@link GET_OrganizationsAttributesByOrganizationId_Response_422} - 422 response type
|
|
8991
|
-
*
|
|
8992
|
-
|
|
8993
|
-
*/
|
|
8994
|
-
export type GET_OrganizationsAttributesByOrganizationId_Response = GET_OrganizationsAttributesByOrganizationId_Response_200 | GET_OrganizationsAttributesByOrganizationId_Response_401 | GET_OrganizationsAttributesByOrganizationId_Response_403 | GET_OrganizationsAttributesByOrganizationId_Response_422;
|
|
8995
|
-
|
|
8996
|
-
/**
|
|
8997
|
-
* 200 response for GET OrganizationsAttributesByOrganizationId endpoint
|
|
8984
|
+
* @path /v1/organizations/{organization_id}
|
|
8998
8985
|
*
|
|
8999
|
-
* @
|
|
9000
|
-
*
|
|
9001
|
-
*
|
|
9002
|
-
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
8986
|
+
* @see {@link DELETE_OrganizationsByOrganizationId_Response_401} - 401 response type
|
|
8987
|
+
* @see {@link DELETE_OrganizationsByOrganizationId_Response_403} - 403 response type
|
|
8988
|
+
* @see {@link DELETE_OrganizationsByOrganizationId_Response_422} - 422 response type
|
|
9003
8989
|
*
|
|
9004
8990
|
|
|
9005
|
-
*
|
|
9006
|
-
* @path /v1/organizations/attributes/{organization_id}
|
|
9007
|
-
* @param keys (query) - Optional list of attribute keys to filter
|
|
9008
|
-
*
|
|
9009
|
-
* @see {@link GET_OrganizationsAttributesByOrganizationId_Response} - The main response type definition
|
|
9010
|
-
* @see {@link OrganizationAttribute2} - The actual schema type definition
|
|
9011
8991
|
*/
|
|
9012
|
-
export type
|
|
8992
|
+
export type DELETE_OrganizationsByOrganizationId_Response = DELETE_OrganizationsByOrganizationId_Response_401 | DELETE_OrganizationsByOrganizationId_Response_403 | DELETE_OrganizationsByOrganizationId_Response_422;
|
|
9013
8993
|
|
|
9014
8994
|
/**
|
|
9015
|
-
* 401 response for
|
|
8995
|
+
* 401 response for DELETE OrganizationsByOrganizationId endpoint
|
|
9016
8996
|
*
|
|
9017
8997
|
* @remarks
|
|
9018
8998
|
* This type defines the response structure for the 401 status code
|
|
9019
|
-
* of the
|
|
8999
|
+
* of the DELETE OrganizationsByOrganizationId endpoint.
|
|
9020
9000
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9021
9001
|
*
|
|
9022
9002
|
|
|
9023
9003
|
*
|
|
9024
|
-
* @path /v1/organizations/
|
|
9025
|
-
* @param keys (query) - Optional list of attribute keys to filter
|
|
9004
|
+
* @path /v1/organizations/{organization_id}
|
|
9026
9005
|
*
|
|
9027
|
-
* @see {@link
|
|
9006
|
+
* @see {@link DELETE_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
9028
9007
|
* @see {@link Problem} - The actual schema type definition
|
|
9029
9008
|
*/
|
|
9030
|
-
export type
|
|
9009
|
+
export type DELETE_OrganizationsByOrganizationId_Response_401 = Problem
|
|
9031
9010
|
|
|
9032
9011
|
/**
|
|
9033
|
-
* 403 response for
|
|
9012
|
+
* 403 response for DELETE OrganizationsByOrganizationId endpoint
|
|
9034
9013
|
*
|
|
9035
9014
|
* @remarks
|
|
9036
9015
|
* This type defines the response structure for the 403 status code
|
|
9037
|
-
* of the
|
|
9016
|
+
* of the DELETE OrganizationsByOrganizationId endpoint.
|
|
9038
9017
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9039
9018
|
*
|
|
9040
9019
|
|
|
9041
9020
|
*
|
|
9042
|
-
* @path /v1/organizations/
|
|
9043
|
-
* @param keys (query) - Optional list of attribute keys to filter
|
|
9021
|
+
* @path /v1/organizations/{organization_id}
|
|
9044
9022
|
*
|
|
9045
|
-
* @see {@link
|
|
9023
|
+
* @see {@link DELETE_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
9046
9024
|
* @see {@link Problem} - The actual schema type definition
|
|
9047
9025
|
*/
|
|
9048
|
-
export type
|
|
9026
|
+
export type DELETE_OrganizationsByOrganizationId_Response_403 = Problem
|
|
9049
9027
|
|
|
9050
9028
|
/**
|
|
9051
|
-
* 422 response for
|
|
9029
|
+
* 422 response for DELETE OrganizationsByOrganizationId endpoint
|
|
9052
9030
|
*
|
|
9053
9031
|
* @remarks
|
|
9054
9032
|
* This type defines the response structure for the 422 status code
|
|
9055
|
-
* of the
|
|
9033
|
+
* of the DELETE OrganizationsByOrganizationId endpoint.
|
|
9056
9034
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9057
9035
|
*
|
|
9058
9036
|
|
|
9059
9037
|
*
|
|
9060
|
-
* @path /v1/organizations/
|
|
9061
|
-
* @param keys (query) - Optional list of attribute keys to filter
|
|
9038
|
+
* @path /v1/organizations/{organization_id}
|
|
9062
9039
|
*
|
|
9063
|
-
* @see {@link
|
|
9040
|
+
* @see {@link DELETE_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
9064
9041
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
9065
9042
|
*/
|
|
9066
|
-
export type
|
|
9043
|
+
export type DELETE_OrganizationsByOrganizationId_Response_422 = HTTPValidationError
|
|
9067
9044
|
|
|
9068
9045
|
/**
|
|
9069
|
-
* Response types for
|
|
9046
|
+
* Response types for GET OrganizationsByOrganizationId endpoint
|
|
9070
9047
|
*
|
|
9071
|
-
*
|
|
9072
|
-
*
|
|
9048
|
+
* Get organization details
|
|
9049
|
+
* Retrieves details for a specific organization
|
|
9073
9050
|
*
|
|
9074
9051
|
* @remarks
|
|
9075
|
-
* This type defines all possible response structures for the
|
|
9052
|
+
* This type defines all possible response structures for the GET OrganizationsByOrganizationId endpoint.
|
|
9076
9053
|
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
9077
9054
|
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
9078
9055
|
*
|
|
9079
9056
|
|
|
9080
9057
|
*
|
|
9081
|
-
* @path /v1/organizations/
|
|
9058
|
+
* @path /v1/organizations/{organization_id}
|
|
9082
9059
|
*
|
|
9083
|
-
* @see {@link
|
|
9084
|
-
* @see {@link
|
|
9085
|
-
* @see {@link
|
|
9086
|
-
* @see {@link
|
|
9060
|
+
* @see {@link GET_OrganizationsByOrganizationId_Response_200} - 200 response type
|
|
9061
|
+
* @see {@link GET_OrganizationsByOrganizationId_Response_401} - 401 response type
|
|
9062
|
+
* @see {@link GET_OrganizationsByOrganizationId_Response_403} - 403 response type
|
|
9063
|
+
* @see {@link GET_OrganizationsByOrganizationId_Response_422} - 422 response type
|
|
9087
9064
|
*
|
|
9088
9065
|
|
|
9089
9066
|
*/
|
|
9090
|
-
export type
|
|
9067
|
+
export type GET_OrganizationsByOrganizationId_Response = GET_OrganizationsByOrganizationId_Response_200 | GET_OrganizationsByOrganizationId_Response_401 | GET_OrganizationsByOrganizationId_Response_403 | GET_OrganizationsByOrganizationId_Response_422;
|
|
9091
9068
|
|
|
9092
9069
|
/**
|
|
9093
|
-
* 200 response for
|
|
9070
|
+
* 200 response for GET OrganizationsByOrganizationId endpoint
|
|
9094
9071
|
*
|
|
9095
9072
|
* @remarks
|
|
9096
9073
|
* This type defines the response structure for the 200 status code
|
|
9097
|
-
* of the
|
|
9074
|
+
* of the GET OrganizationsByOrganizationId endpoint.
|
|
9098
9075
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9099
9076
|
*
|
|
9100
9077
|
|
|
9101
9078
|
*
|
|
9102
|
-
* @path /v1/organizations/
|
|
9079
|
+
* @path /v1/organizations/{organization_id}
|
|
9103
9080
|
*
|
|
9104
|
-
* @see {@link
|
|
9105
|
-
* @see {@link
|
|
9081
|
+
* @see {@link GET_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
9082
|
+
* @see {@link OrganizationWithBillingData} - The actual schema type definition
|
|
9106
9083
|
*/
|
|
9107
|
-
export type
|
|
9084
|
+
export type GET_OrganizationsByOrganizationId_Response_200 = OrganizationWithBillingData
|
|
9108
9085
|
|
|
9109
9086
|
/**
|
|
9110
|
-
* 401 response for
|
|
9087
|
+
* 401 response for GET OrganizationsByOrganizationId endpoint
|
|
9111
9088
|
*
|
|
9112
9089
|
* @remarks
|
|
9113
9090
|
* This type defines the response structure for the 401 status code
|
|
9114
|
-
* of the
|
|
9091
|
+
* of the GET OrganizationsByOrganizationId endpoint.
|
|
9115
9092
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9116
9093
|
*
|
|
9117
9094
|
|
|
9118
9095
|
*
|
|
9119
|
-
* @path /v1/organizations/
|
|
9096
|
+
* @path /v1/organizations/{organization_id}
|
|
9120
9097
|
*
|
|
9121
|
-
* @see {@link
|
|
9098
|
+
* @see {@link GET_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
9122
9099
|
* @see {@link Problem} - The actual schema type definition
|
|
9123
9100
|
*/
|
|
9124
|
-
export type
|
|
9101
|
+
export type GET_OrganizationsByOrganizationId_Response_401 = Problem
|
|
9125
9102
|
|
|
9126
9103
|
/**
|
|
9127
|
-
* 403 response for
|
|
9104
|
+
* 403 response for GET OrganizationsByOrganizationId endpoint
|
|
9128
9105
|
*
|
|
9129
9106
|
* @remarks
|
|
9130
9107
|
* This type defines the response structure for the 403 status code
|
|
9131
|
-
* of the
|
|
9108
|
+
* of the GET OrganizationsByOrganizationId endpoint.
|
|
9132
9109
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9133
9110
|
*
|
|
9134
9111
|
|
|
9135
9112
|
*
|
|
9136
|
-
* @path /v1/organizations/
|
|
9113
|
+
* @path /v1/organizations/{organization_id}
|
|
9137
9114
|
*
|
|
9138
|
-
* @see {@link
|
|
9115
|
+
* @see {@link GET_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
9139
9116
|
* @see {@link Problem} - The actual schema type definition
|
|
9140
9117
|
*/
|
|
9141
|
-
export type
|
|
9118
|
+
export type GET_OrganizationsByOrganizationId_Response_403 = Problem
|
|
9142
9119
|
|
|
9143
9120
|
/**
|
|
9144
|
-
* 422 response for
|
|
9121
|
+
* 422 response for GET OrganizationsByOrganizationId endpoint
|
|
9145
9122
|
*
|
|
9146
9123
|
* @remarks
|
|
9147
9124
|
* This type defines the response structure for the 422 status code
|
|
9148
|
-
* of the
|
|
9125
|
+
* of the GET OrganizationsByOrganizationId endpoint.
|
|
9149
9126
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9150
9127
|
*
|
|
9151
9128
|
|
|
9152
9129
|
*
|
|
9153
|
-
* @path /v1/organizations/
|
|
9130
|
+
* @path /v1/organizations/{organization_id}
|
|
9154
9131
|
*
|
|
9155
|
-
* @see {@link
|
|
9132
|
+
* @see {@link GET_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
9156
9133
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
9157
9134
|
*/
|
|
9158
|
-
export type
|
|
9135
|
+
export type GET_OrganizationsByOrganizationId_Response_422 = HTTPValidationError
|
|
9159
9136
|
|
|
9160
9137
|
/**
|
|
9161
|
-
* Response types for
|
|
9138
|
+
* Response types for PATCH OrganizationsByOrganizationId endpoint
|
|
9162
9139
|
*
|
|
9163
|
-
*
|
|
9164
|
-
*
|
|
9140
|
+
* Update an organization
|
|
9141
|
+
* Updates details for a specific organization
|
|
9165
9142
|
*
|
|
9166
9143
|
* @remarks
|
|
9167
|
-
* This type defines all possible response structures for the
|
|
9144
|
+
* This type defines all possible response structures for the PATCH OrganizationsByOrganizationId endpoint.
|
|
9168
9145
|
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
9169
9146
|
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
9170
9147
|
*
|
|
@@ -9172,248 +9149,271 @@ export type PATCH_OrganizationsAttributesByOrganizationId_Response_422 = HTTPVal
|
|
|
9172
9149
|
*
|
|
9173
9150
|
* @path /v1/organizations/{organization_id}
|
|
9174
9151
|
*
|
|
9175
|
-
* @see {@link
|
|
9176
|
-
* @see {@link
|
|
9177
|
-
* @see {@link
|
|
9152
|
+
* @see {@link PATCH_OrganizationsByOrganizationId_Response_200} - 200 response type
|
|
9153
|
+
* @see {@link PATCH_OrganizationsByOrganizationId_Response_401} - 401 response type
|
|
9154
|
+
* @see {@link PATCH_OrganizationsByOrganizationId_Response_403} - 403 response type
|
|
9155
|
+
* @see {@link PATCH_OrganizationsByOrganizationId_Response_422} - 422 response type
|
|
9178
9156
|
*
|
|
9179
9157
|
|
|
9180
9158
|
*/
|
|
9181
|
-
export type
|
|
9159
|
+
export type PATCH_OrganizationsByOrganizationId_Response = PATCH_OrganizationsByOrganizationId_Response_200 | PATCH_OrganizationsByOrganizationId_Response_401 | PATCH_OrganizationsByOrganizationId_Response_403 | PATCH_OrganizationsByOrganizationId_Response_422;
|
|
9182
9160
|
|
|
9183
9161
|
/**
|
|
9184
|
-
*
|
|
9162
|
+
* 200 response for PATCH OrganizationsByOrganizationId endpoint
|
|
9163
|
+
*
|
|
9164
|
+
* @remarks
|
|
9165
|
+
* This type defines the response structure for the 200 status code
|
|
9166
|
+
* of the PATCH OrganizationsByOrganizationId endpoint.
|
|
9167
|
+
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9168
|
+
*
|
|
9169
|
+
|
|
9170
|
+
*
|
|
9171
|
+
* @path /v1/organizations/{organization_id}
|
|
9172
|
+
*
|
|
9173
|
+
* @see {@link PATCH_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
9174
|
+
* @see {@link Organization} - The actual schema type definition
|
|
9175
|
+
*/
|
|
9176
|
+
export type PATCH_OrganizationsByOrganizationId_Response_200 = Organization
|
|
9177
|
+
|
|
9178
|
+
/**
|
|
9179
|
+
* 401 response for PATCH OrganizationsByOrganizationId endpoint
|
|
9185
9180
|
*
|
|
9186
9181
|
* @remarks
|
|
9187
9182
|
* This type defines the response structure for the 401 status code
|
|
9188
|
-
* of the
|
|
9183
|
+
* of the PATCH OrganizationsByOrganizationId endpoint.
|
|
9189
9184
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9190
9185
|
*
|
|
9191
9186
|
|
|
9192
9187
|
*
|
|
9193
9188
|
* @path /v1/organizations/{organization_id}
|
|
9194
9189
|
*
|
|
9195
|
-
* @see {@link
|
|
9190
|
+
* @see {@link PATCH_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
9196
9191
|
* @see {@link Problem} - The actual schema type definition
|
|
9197
9192
|
*/
|
|
9198
|
-
export type
|
|
9193
|
+
export type PATCH_OrganizationsByOrganizationId_Response_401 = Problem
|
|
9199
9194
|
|
|
9200
9195
|
/**
|
|
9201
|
-
* 403 response for
|
|
9196
|
+
* 403 response for PATCH OrganizationsByOrganizationId endpoint
|
|
9202
9197
|
*
|
|
9203
9198
|
* @remarks
|
|
9204
9199
|
* This type defines the response structure for the 403 status code
|
|
9205
|
-
* of the
|
|
9200
|
+
* of the PATCH OrganizationsByOrganizationId endpoint.
|
|
9206
9201
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9207
9202
|
*
|
|
9208
9203
|
|
|
9209
9204
|
*
|
|
9210
9205
|
* @path /v1/organizations/{organization_id}
|
|
9211
9206
|
*
|
|
9212
|
-
* @see {@link
|
|
9207
|
+
* @see {@link PATCH_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
9213
9208
|
* @see {@link Problem} - The actual schema type definition
|
|
9214
9209
|
*/
|
|
9215
|
-
export type
|
|
9210
|
+
export type PATCH_OrganizationsByOrganizationId_Response_403 = Problem
|
|
9216
9211
|
|
|
9217
9212
|
/**
|
|
9218
|
-
* 422 response for
|
|
9213
|
+
* 422 response for PATCH OrganizationsByOrganizationId endpoint
|
|
9219
9214
|
*
|
|
9220
9215
|
* @remarks
|
|
9221
9216
|
* This type defines the response structure for the 422 status code
|
|
9222
|
-
* of the
|
|
9217
|
+
* of the PATCH OrganizationsByOrganizationId endpoint.
|
|
9223
9218
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9224
9219
|
*
|
|
9225
9220
|
|
|
9226
9221
|
*
|
|
9227
9222
|
* @path /v1/organizations/{organization_id}
|
|
9228
9223
|
*
|
|
9229
|
-
* @see {@link
|
|
9224
|
+
* @see {@link PATCH_OrganizationsByOrganizationId_Response} - The main response type definition
|
|
9230
9225
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
9231
9226
|
*/
|
|
9232
|
-
export type
|
|
9227
|
+
export type PATCH_OrganizationsByOrganizationId_Response_422 = HTTPValidationError
|
|
9233
9228
|
|
|
9234
9229
|
/**
|
|
9235
|
-
* Response types for GET
|
|
9230
|
+
* Response types for GET OrganizationsByOrganizationIdAttributes endpoint
|
|
9236
9231
|
*
|
|
9237
|
-
*
|
|
9238
|
-
* Retrieves
|
|
9232
|
+
* List organization attributes
|
|
9233
|
+
* Retrieves a list of organization attributes for the specified organization
|
|
9239
9234
|
*
|
|
9240
9235
|
* @remarks
|
|
9241
|
-
* This type defines all possible response structures for the GET
|
|
9236
|
+
* This type defines all possible response structures for the GET OrganizationsByOrganizationIdAttributes endpoint.
|
|
9242
9237
|
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
9243
9238
|
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
9244
9239
|
*
|
|
9245
9240
|
|
|
9246
9241
|
*
|
|
9247
|
-
* @path /v1/organizations/{organization_id}
|
|
9242
|
+
* @path /v1/organizations/{organization_id}/attributes
|
|
9243
|
+
* @param keys (query) - Optional list of attribute keys to filter
|
|
9248
9244
|
*
|
|
9249
|
-
* @see {@link
|
|
9250
|
-
* @see {@link
|
|
9251
|
-
* @see {@link
|
|
9252
|
-
* @see {@link
|
|
9245
|
+
* @see {@link GET_OrganizationsByOrganizationIdAttributes_Response_200} - 200 response type
|
|
9246
|
+
* @see {@link GET_OrganizationsByOrganizationIdAttributes_Response_401} - 401 response type
|
|
9247
|
+
* @see {@link GET_OrganizationsByOrganizationIdAttributes_Response_403} - 403 response type
|
|
9248
|
+
* @see {@link GET_OrganizationsByOrganizationIdAttributes_Response_422} - 422 response type
|
|
9253
9249
|
*
|
|
9254
9250
|
|
|
9255
9251
|
*/
|
|
9256
|
-
export type
|
|
9252
|
+
export type GET_OrganizationsByOrganizationIdAttributes_Response = GET_OrganizationsByOrganizationIdAttributes_Response_200 | GET_OrganizationsByOrganizationIdAttributes_Response_401 | GET_OrganizationsByOrganizationIdAttributes_Response_403 | GET_OrganizationsByOrganizationIdAttributes_Response_422;
|
|
9257
9253
|
|
|
9258
9254
|
/**
|
|
9259
|
-
* 200 response for GET
|
|
9255
|
+
* 200 response for GET OrganizationsByOrganizationIdAttributes endpoint
|
|
9260
9256
|
*
|
|
9261
9257
|
* @remarks
|
|
9262
9258
|
* This type defines the response structure for the 200 status code
|
|
9263
|
-
* of the GET
|
|
9259
|
+
* of the GET OrganizationsByOrganizationIdAttributes endpoint.
|
|
9264
9260
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9265
9261
|
*
|
|
9266
9262
|
|
|
9267
9263
|
*
|
|
9268
|
-
* @path /v1/organizations/{organization_id}
|
|
9264
|
+
* @path /v1/organizations/{organization_id}/attributes
|
|
9265
|
+
* @param keys (query) - Optional list of attribute keys to filter
|
|
9269
9266
|
*
|
|
9270
|
-
* @see {@link
|
|
9271
|
-
* @see {@link
|
|
9267
|
+
* @see {@link GET_OrganizationsByOrganizationIdAttributes_Response} - The main response type definition
|
|
9268
|
+
* @see {@link OrganizationAttribute2} - The actual schema type definition
|
|
9272
9269
|
*/
|
|
9273
|
-
export type
|
|
9270
|
+
export type GET_OrganizationsByOrganizationIdAttributes_Response_200 = OrganizationAttribute2Array
|
|
9274
9271
|
|
|
9275
9272
|
/**
|
|
9276
|
-
* 401 response for GET
|
|
9273
|
+
* 401 response for GET OrganizationsByOrganizationIdAttributes endpoint
|
|
9277
9274
|
*
|
|
9278
9275
|
* @remarks
|
|
9279
9276
|
* This type defines the response structure for the 401 status code
|
|
9280
|
-
* of the GET
|
|
9277
|
+
* of the GET OrganizationsByOrganizationIdAttributes endpoint.
|
|
9281
9278
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9282
9279
|
*
|
|
9283
9280
|
|
|
9284
9281
|
*
|
|
9285
|
-
* @path /v1/organizations/{organization_id}
|
|
9282
|
+
* @path /v1/organizations/{organization_id}/attributes
|
|
9283
|
+
* @param keys (query) - Optional list of attribute keys to filter
|
|
9286
9284
|
*
|
|
9287
|
-
* @see {@link
|
|
9285
|
+
* @see {@link GET_OrganizationsByOrganizationIdAttributes_Response} - The main response type definition
|
|
9288
9286
|
* @see {@link Problem} - The actual schema type definition
|
|
9289
9287
|
*/
|
|
9290
|
-
export type
|
|
9288
|
+
export type GET_OrganizationsByOrganizationIdAttributes_Response_401 = Problem
|
|
9291
9289
|
|
|
9292
9290
|
/**
|
|
9293
|
-
* 403 response for GET
|
|
9291
|
+
* 403 response for GET OrganizationsByOrganizationIdAttributes endpoint
|
|
9294
9292
|
*
|
|
9295
9293
|
* @remarks
|
|
9296
9294
|
* This type defines the response structure for the 403 status code
|
|
9297
|
-
* of the GET
|
|
9295
|
+
* of the GET OrganizationsByOrganizationIdAttributes endpoint.
|
|
9298
9296
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9299
9297
|
*
|
|
9300
9298
|
|
|
9301
9299
|
*
|
|
9302
|
-
* @path /v1/organizations/{organization_id}
|
|
9300
|
+
* @path /v1/organizations/{organization_id}/attributes
|
|
9301
|
+
* @param keys (query) - Optional list of attribute keys to filter
|
|
9303
9302
|
*
|
|
9304
|
-
* @see {@link
|
|
9303
|
+
* @see {@link GET_OrganizationsByOrganizationIdAttributes_Response} - The main response type definition
|
|
9305
9304
|
* @see {@link Problem} - The actual schema type definition
|
|
9306
9305
|
*/
|
|
9307
|
-
export type
|
|
9306
|
+
export type GET_OrganizationsByOrganizationIdAttributes_Response_403 = Problem
|
|
9308
9307
|
|
|
9309
9308
|
/**
|
|
9310
|
-
* 422 response for GET
|
|
9309
|
+
* 422 response for GET OrganizationsByOrganizationIdAttributes endpoint
|
|
9311
9310
|
*
|
|
9312
9311
|
* @remarks
|
|
9313
9312
|
* This type defines the response structure for the 422 status code
|
|
9314
|
-
* of the GET
|
|
9313
|
+
* of the GET OrganizationsByOrganizationIdAttributes endpoint.
|
|
9315
9314
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9316
9315
|
*
|
|
9317
9316
|
|
|
9318
9317
|
*
|
|
9319
|
-
* @path /v1/organizations/{organization_id}
|
|
9318
|
+
* @path /v1/organizations/{organization_id}/attributes
|
|
9319
|
+
* @param keys (query) - Optional list of attribute keys to filter
|
|
9320
9320
|
*
|
|
9321
|
-
* @see {@link
|
|
9321
|
+
* @see {@link GET_OrganizationsByOrganizationIdAttributes_Response} - The main response type definition
|
|
9322
9322
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
9323
9323
|
*/
|
|
9324
|
-
export type
|
|
9324
|
+
export type GET_OrganizationsByOrganizationIdAttributes_Response_422 = HTTPValidationError
|
|
9325
9325
|
|
|
9326
9326
|
/**
|
|
9327
|
-
* Response types for PATCH
|
|
9327
|
+
* Response types for PATCH OrganizationsByOrganizationIdAttributes endpoint
|
|
9328
9328
|
*
|
|
9329
|
-
* Update
|
|
9330
|
-
* Updates
|
|
9329
|
+
* Update organization attributes
|
|
9330
|
+
* Updates one or more organization attributes for the specified organization
|
|
9331
9331
|
*
|
|
9332
9332
|
* @remarks
|
|
9333
|
-
* This type defines all possible response structures for the PATCH
|
|
9333
|
+
* This type defines all possible response structures for the PATCH OrganizationsByOrganizationIdAttributes endpoint.
|
|
9334
9334
|
* Each response code maps to a specific response type as defined in the OpenAPI specification.
|
|
9335
9335
|
* Use this type to ensure type safety when handling API responses from this endpoint.
|
|
9336
9336
|
*
|
|
9337
9337
|
|
|
9338
9338
|
*
|
|
9339
|
-
* @path /v1/organizations/{organization_id}
|
|
9339
|
+
* @path /v1/organizations/{organization_id}/attributes
|
|
9340
9340
|
*
|
|
9341
|
-
* @see {@link
|
|
9342
|
-
* @see {@link
|
|
9343
|
-
* @see {@link
|
|
9344
|
-
* @see {@link
|
|
9341
|
+
* @see {@link PATCH_OrganizationsByOrganizationIdAttributes_Response_200} - 200 response type
|
|
9342
|
+
* @see {@link PATCH_OrganizationsByOrganizationIdAttributes_Response_401} - 401 response type
|
|
9343
|
+
* @see {@link PATCH_OrganizationsByOrganizationIdAttributes_Response_403} - 403 response type
|
|
9344
|
+
* @see {@link PATCH_OrganizationsByOrganizationIdAttributes_Response_422} - 422 response type
|
|
9345
9345
|
*
|
|
9346
9346
|
|
|
9347
9347
|
*/
|
|
9348
|
-
export type
|
|
9348
|
+
export type PATCH_OrganizationsByOrganizationIdAttributes_Response = PATCH_OrganizationsByOrganizationIdAttributes_Response_200 | PATCH_OrganizationsByOrganizationIdAttributes_Response_401 | PATCH_OrganizationsByOrganizationIdAttributes_Response_403 | PATCH_OrganizationsByOrganizationIdAttributes_Response_422;
|
|
9349
9349
|
|
|
9350
9350
|
/**
|
|
9351
|
-
* 200 response for PATCH
|
|
9351
|
+
* 200 response for PATCH OrganizationsByOrganizationIdAttributes endpoint
|
|
9352
9352
|
*
|
|
9353
9353
|
* @remarks
|
|
9354
9354
|
* This type defines the response structure for the 200 status code
|
|
9355
|
-
* of the PATCH
|
|
9355
|
+
* of the PATCH OrganizationsByOrganizationIdAttributes endpoint.
|
|
9356
9356
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9357
9357
|
*
|
|
9358
9358
|
|
|
9359
9359
|
*
|
|
9360
|
-
* @path /v1/organizations/{organization_id}
|
|
9360
|
+
* @path /v1/organizations/{organization_id}/attributes
|
|
9361
9361
|
*
|
|
9362
|
-
* @see {@link
|
|
9363
|
-
* @see {@link
|
|
9362
|
+
* @see {@link PATCH_OrganizationsByOrganizationIdAttributes_Response} - The main response type definition
|
|
9363
|
+
* @see {@link OrganizationAttribute2} - The actual schema type definition
|
|
9364
9364
|
*/
|
|
9365
|
-
export type
|
|
9365
|
+
export type PATCH_OrganizationsByOrganizationIdAttributes_Response_200 = OrganizationAttribute2Array
|
|
9366
9366
|
|
|
9367
9367
|
/**
|
|
9368
|
-
* 401 response for PATCH
|
|
9368
|
+
* 401 response for PATCH OrganizationsByOrganizationIdAttributes endpoint
|
|
9369
9369
|
*
|
|
9370
9370
|
* @remarks
|
|
9371
9371
|
* This type defines the response structure for the 401 status code
|
|
9372
|
-
* of the PATCH
|
|
9372
|
+
* of the PATCH OrganizationsByOrganizationIdAttributes endpoint.
|
|
9373
9373
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9374
9374
|
*
|
|
9375
9375
|
|
|
9376
9376
|
*
|
|
9377
|
-
* @path /v1/organizations/{organization_id}
|
|
9377
|
+
* @path /v1/organizations/{organization_id}/attributes
|
|
9378
9378
|
*
|
|
9379
|
-
* @see {@link
|
|
9379
|
+
* @see {@link PATCH_OrganizationsByOrganizationIdAttributes_Response} - The main response type definition
|
|
9380
9380
|
* @see {@link Problem} - The actual schema type definition
|
|
9381
9381
|
*/
|
|
9382
|
-
export type
|
|
9382
|
+
export type PATCH_OrganizationsByOrganizationIdAttributes_Response_401 = Problem
|
|
9383
9383
|
|
|
9384
9384
|
/**
|
|
9385
|
-
* 403 response for PATCH
|
|
9385
|
+
* 403 response for PATCH OrganizationsByOrganizationIdAttributes endpoint
|
|
9386
9386
|
*
|
|
9387
9387
|
* @remarks
|
|
9388
9388
|
* This type defines the response structure for the 403 status code
|
|
9389
|
-
* of the PATCH
|
|
9389
|
+
* of the PATCH OrganizationsByOrganizationIdAttributes endpoint.
|
|
9390
9390
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9391
9391
|
*
|
|
9392
9392
|
|
|
9393
9393
|
*
|
|
9394
|
-
* @path /v1/organizations/{organization_id}
|
|
9394
|
+
* @path /v1/organizations/{organization_id}/attributes
|
|
9395
9395
|
*
|
|
9396
|
-
* @see {@link
|
|
9396
|
+
* @see {@link PATCH_OrganizationsByOrganizationIdAttributes_Response} - The main response type definition
|
|
9397
9397
|
* @see {@link Problem} - The actual schema type definition
|
|
9398
9398
|
*/
|
|
9399
|
-
export type
|
|
9399
|
+
export type PATCH_OrganizationsByOrganizationIdAttributes_Response_403 = Problem
|
|
9400
9400
|
|
|
9401
9401
|
/**
|
|
9402
|
-
* 422 response for PATCH
|
|
9402
|
+
* 422 response for PATCH OrganizationsByOrganizationIdAttributes endpoint
|
|
9403
9403
|
*
|
|
9404
9404
|
* @remarks
|
|
9405
9405
|
* This type defines the response structure for the 422 status code
|
|
9406
|
-
* of the PATCH
|
|
9406
|
+
* of the PATCH OrganizationsByOrganizationIdAttributes endpoint.
|
|
9407
9407
|
* It provides type safety for handling this specific response as defined in the OpenAPI specification.
|
|
9408
9408
|
*
|
|
9409
9409
|
|
|
9410
9410
|
*
|
|
9411
|
-
* @path /v1/organizations/{organization_id}
|
|
9411
|
+
* @path /v1/organizations/{organization_id}/attributes
|
|
9412
9412
|
*
|
|
9413
|
-
* @see {@link
|
|
9413
|
+
* @see {@link PATCH_OrganizationsByOrganizationIdAttributes_Response} - The main response type definition
|
|
9414
9414
|
* @see {@link HTTPValidationError} - The actual schema type definition
|
|
9415
9415
|
*/
|
|
9416
|
-
export type
|
|
9416
|
+
export type PATCH_OrganizationsByOrganizationIdAttributes_Response_422 = HTTPValidationError
|
|
9417
9417
|
|
|
9418
9418
|
/**
|
|
9419
9419
|
* Response types for GET OrganizationsByOrganizationIdBillingInvoices endpoint
|