@platzio/sdk 0.5.1 → 0.5.2-beta.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/.github/workflows/release.yaml +1 -0
- package/api.ts +1661 -462
- package/openapi.yaml +61 -2
- package/package.json +1 -1
package/openapi.yaml
CHANGED
|
@@ -1144,6 +1144,23 @@ paths:
|
|
|
1144
1144
|
security:
|
|
1145
1145
|
- access_token: []
|
|
1146
1146
|
- user_token: []
|
|
1147
|
+
delete:
|
|
1148
|
+
tags:
|
|
1149
|
+
- Envs
|
|
1150
|
+
operationId: deleteEnv
|
|
1151
|
+
parameters:
|
|
1152
|
+
- name: id
|
|
1153
|
+
in: path
|
|
1154
|
+
required: true
|
|
1155
|
+
schema:
|
|
1156
|
+
type: string
|
|
1157
|
+
format: uuid
|
|
1158
|
+
responses:
|
|
1159
|
+
'204':
|
|
1160
|
+
description: ''
|
|
1161
|
+
security:
|
|
1162
|
+
- access_token: []
|
|
1163
|
+
- user_token: []
|
|
1147
1164
|
/api/v2/helm-charts:
|
|
1148
1165
|
get:
|
|
1149
1166
|
tags:
|
|
@@ -2212,6 +2229,12 @@ paths:
|
|
|
2212
2229
|
schema:
|
|
2213
2230
|
type: string
|
|
2214
2231
|
nullable: true
|
|
2232
|
+
- name: is_active
|
|
2233
|
+
in: query
|
|
2234
|
+
required: false
|
|
2235
|
+
schema:
|
|
2236
|
+
type: boolean
|
|
2237
|
+
nullable: true
|
|
2215
2238
|
- name: page
|
|
2216
2239
|
in: query
|
|
2217
2240
|
required: false
|
|
@@ -2257,6 +2280,7 @@ paths:
|
|
|
2257
2280
|
- display_name
|
|
2258
2281
|
- email
|
|
2259
2282
|
- is_admin
|
|
2283
|
+
- is_active
|
|
2260
2284
|
properties:
|
|
2261
2285
|
id:
|
|
2262
2286
|
type: string
|
|
@@ -2270,6 +2294,8 @@ paths:
|
|
|
2270
2294
|
type: string
|
|
2271
2295
|
is_admin:
|
|
2272
2296
|
type: boolean
|
|
2297
|
+
is_active:
|
|
2298
|
+
type: boolean
|
|
2273
2299
|
num_total:
|
|
2274
2300
|
type: integer
|
|
2275
2301
|
format: int64
|
|
@@ -2760,10 +2786,36 @@ components:
|
|
|
2760
2786
|
properties:
|
|
2761
2787
|
created_token:
|
|
2762
2788
|
type: string
|
|
2789
|
+
DbEvent:
|
|
2790
|
+
type: object
|
|
2791
|
+
required:
|
|
2792
|
+
- operation
|
|
2793
|
+
- table
|
|
2794
|
+
- data
|
|
2795
|
+
properties:
|
|
2796
|
+
operation:
|
|
2797
|
+
$ref: '#/components/schemas/DbEventOperation'
|
|
2798
|
+
table:
|
|
2799
|
+
$ref: '#/components/schemas/DbTable'
|
|
2800
|
+
data:
|
|
2801
|
+
$ref: '#/components/schemas/DbEventData'
|
|
2802
|
+
DbEventData:
|
|
2803
|
+
type: object
|
|
2804
|
+
required:
|
|
2805
|
+
- id
|
|
2806
|
+
properties:
|
|
2807
|
+
id:
|
|
2808
|
+
type: string
|
|
2809
|
+
format: uuid
|
|
2810
|
+
DbEventOperation:
|
|
2811
|
+
type: string
|
|
2812
|
+
enum:
|
|
2813
|
+
- INSERT
|
|
2814
|
+
- UPDATE
|
|
2815
|
+
- DELETE
|
|
2763
2816
|
DbTable:
|
|
2764
2817
|
type: string
|
|
2765
2818
|
enum:
|
|
2766
|
-
- deployment_configs
|
|
2767
2819
|
- deployment_resources
|
|
2768
2820
|
- deployment_resource_types
|
|
2769
2821
|
- deployments
|
|
@@ -2980,7 +3032,6 @@ components:
|
|
|
2980
3032
|
type: object
|
|
2981
3033
|
required:
|
|
2982
3034
|
- status
|
|
2983
|
-
- notices
|
|
2984
3035
|
properties:
|
|
2985
3036
|
status:
|
|
2986
3037
|
$ref: '#/components/schemas/DeploymentReportedStatusSummary'
|
|
@@ -3957,6 +4008,9 @@ components:
|
|
|
3957
4008
|
is_admin:
|
|
3958
4009
|
type: boolean
|
|
3959
4010
|
nullable: true
|
|
4011
|
+
is_active:
|
|
4012
|
+
type: boolean
|
|
4013
|
+
nullable: true
|
|
3960
4014
|
User:
|
|
3961
4015
|
type: object
|
|
3962
4016
|
required:
|
|
@@ -3965,6 +4019,7 @@ components:
|
|
|
3965
4019
|
- display_name
|
|
3966
4020
|
- email
|
|
3967
4021
|
- is_admin
|
|
4022
|
+
- is_active
|
|
3968
4023
|
properties:
|
|
3969
4024
|
id:
|
|
3970
4025
|
type: string
|
|
@@ -3978,6 +4033,8 @@ components:
|
|
|
3978
4033
|
type: string
|
|
3979
4034
|
is_admin:
|
|
3980
4035
|
type: boolean
|
|
4036
|
+
is_active:
|
|
4037
|
+
type: boolean
|
|
3981
4038
|
UserDeploymentRole:
|
|
3982
4039
|
type: string
|
|
3983
4040
|
enum:
|
|
@@ -4049,4 +4106,6 @@ tags:
|
|
|
4049
4106
|
User tokens are passed in the `x-platz-token` header.
|
|
4050
4107
|
- name: Users
|
|
4051
4108
|
description: This collection contains all users in Platz.
|
|
4109
|
+
- name: Events
|
|
4110
|
+
description: Events sent through the Websocket.
|
|
4052
4111
|
|