@faable/deploy-sdk 2.5.0 → 2.7.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/dist/FaableDeployApi.d.ts +39 -5
- package/dist/FaableDeployApi.d.ts.map +1 -1
- package/dist/FaableDeployApi.js +30 -0
- package/dist/api/api-types.d.ts +2 -0
- package/dist/api/api-types.d.ts.map +1 -1
- package/dist/api/custom-types.d.ts +50 -0
- package/dist/api/custom-types.d.ts.map +1 -1
- package/dist/api/generated-client.d.ts +43 -13
- package/dist/api/generated-client.d.ts.map +1 -1
- package/dist/api/types.d.ts +55 -16
- package/dist/api/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/spec/openapi.json +329 -36
package/spec/openapi.json
CHANGED
|
@@ -195,27 +195,31 @@
|
|
|
195
195
|
],
|
|
196
196
|
"properties": {
|
|
197
197
|
"name": {
|
|
198
|
-
"type": "string"
|
|
198
|
+
"type": "string",
|
|
199
|
+
"minLength": 3,
|
|
200
|
+
"maxLength": 50,
|
|
201
|
+
"pattern": "^[A-Za-z0-9][A-Za-z0-9 ._'()&-]*[A-Za-z0-9)]$"
|
|
199
202
|
},
|
|
200
203
|
"description": {
|
|
201
204
|
"type": "string"
|
|
202
205
|
},
|
|
203
|
-
"slug": {
|
|
204
|
-
"type": "string"
|
|
205
|
-
},
|
|
206
206
|
"collaborators": {
|
|
207
207
|
"type": "array",
|
|
208
208
|
"items": {
|
|
209
209
|
"type": "string"
|
|
210
210
|
}
|
|
211
211
|
}
|
|
212
|
-
}
|
|
212
|
+
},
|
|
213
|
+
"additionalProperties": false
|
|
213
214
|
},
|
|
214
215
|
"ProjectUpdate": {
|
|
215
216
|
"type": "object",
|
|
216
217
|
"properties": {
|
|
217
218
|
"name": {
|
|
218
|
-
"type": "string"
|
|
219
|
+
"type": "string",
|
|
220
|
+
"minLength": 3,
|
|
221
|
+
"maxLength": 50,
|
|
222
|
+
"pattern": "^[A-Za-z0-9][A-Za-z0-9 ._'()&-]*[A-Za-z0-9)]$"
|
|
219
223
|
},
|
|
220
224
|
"description": {
|
|
221
225
|
"type": "string"
|
|
@@ -226,7 +230,8 @@
|
|
|
226
230
|
"type": "string"
|
|
227
231
|
}
|
|
228
232
|
}
|
|
229
|
-
}
|
|
233
|
+
},
|
|
234
|
+
"additionalProperties": false
|
|
230
235
|
},
|
|
231
236
|
"AppStatus": {
|
|
232
237
|
"type": "object",
|
|
@@ -456,8 +461,13 @@
|
|
|
456
461
|
"enum": [
|
|
457
462
|
"local",
|
|
458
463
|
"remote"
|
|
459
|
-
]
|
|
460
|
-
|
|
464
|
+
]
|
|
465
|
+
},
|
|
466
|
+
"AppDeployOutput": {
|
|
467
|
+
"enum": [
|
|
468
|
+
"image",
|
|
469
|
+
"artifact"
|
|
470
|
+
]
|
|
461
471
|
},
|
|
462
472
|
"AppCoexistenceRouting": {
|
|
463
473
|
"enum": [
|
|
@@ -479,7 +489,6 @@
|
|
|
479
489
|
"runtime",
|
|
480
490
|
"runtime_strategy",
|
|
481
491
|
"mode",
|
|
482
|
-
"build_mode",
|
|
483
492
|
"instance_type",
|
|
484
493
|
"region",
|
|
485
494
|
"status",
|
|
@@ -537,7 +546,40 @@
|
|
|
537
546
|
"$ref": "#/components/schemas/AppMode"
|
|
538
547
|
},
|
|
539
548
|
"build_mode": {
|
|
540
|
-
"
|
|
549
|
+
"anyOf": [
|
|
550
|
+
{
|
|
551
|
+
"enum": [
|
|
552
|
+
"local",
|
|
553
|
+
"remote"
|
|
554
|
+
]
|
|
555
|
+
},
|
|
556
|
+
{
|
|
557
|
+
"type": "null"
|
|
558
|
+
}
|
|
559
|
+
]
|
|
560
|
+
},
|
|
561
|
+
"deploy_output": {
|
|
562
|
+
"anyOf": [
|
|
563
|
+
{
|
|
564
|
+
"enum": [
|
|
565
|
+
"image",
|
|
566
|
+
"artifact"
|
|
567
|
+
]
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
"type": "null"
|
|
571
|
+
}
|
|
572
|
+
]
|
|
573
|
+
},
|
|
574
|
+
"root_dir": {
|
|
575
|
+
"anyOf": [
|
|
576
|
+
{
|
|
577
|
+
"type": "string"
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"type": "null"
|
|
581
|
+
}
|
|
582
|
+
]
|
|
541
583
|
},
|
|
542
584
|
"coexistence_routing": {
|
|
543
585
|
"anyOf": [
|
|
@@ -801,6 +843,10 @@
|
|
|
801
843
|
"reason": {
|
|
802
844
|
"type": "string",
|
|
803
845
|
"description": "Why the deployment failed (shown to the user on ERROR)"
|
|
846
|
+
},
|
|
847
|
+
"runtime_image": {
|
|
848
|
+
"type": "string",
|
|
849
|
+
"description": "Digest-pinned runtime image stamped at first materialization (artifact deploys)"
|
|
804
850
|
}
|
|
805
851
|
},
|
|
806
852
|
"additionalProperties": false
|
|
@@ -852,6 +898,93 @@
|
|
|
852
898
|
}
|
|
853
899
|
}
|
|
854
900
|
},
|
|
901
|
+
"DeploymentArtifact": {
|
|
902
|
+
"type": "object",
|
|
903
|
+
"required": [
|
|
904
|
+
"sha256",
|
|
905
|
+
"size",
|
|
906
|
+
"format",
|
|
907
|
+
"runtime",
|
|
908
|
+
"profile"
|
|
909
|
+
],
|
|
910
|
+
"properties": {
|
|
911
|
+
"key": {
|
|
912
|
+
"type": "string",
|
|
913
|
+
"maxLength": 512
|
|
914
|
+
},
|
|
915
|
+
"sha256": {
|
|
916
|
+
"type": "string",
|
|
917
|
+
"pattern": "^[a-f0-9]{64}$"
|
|
918
|
+
},
|
|
919
|
+
"size": {
|
|
920
|
+
"type": "integer",
|
|
921
|
+
"minimum": 1,
|
|
922
|
+
"maximum": 2147483648
|
|
923
|
+
},
|
|
924
|
+
"format": {
|
|
925
|
+
"type": "string",
|
|
926
|
+
"enum": [
|
|
927
|
+
"tar.zst"
|
|
928
|
+
]
|
|
929
|
+
},
|
|
930
|
+
"runtime": {
|
|
931
|
+
"type": "object",
|
|
932
|
+
"required": [
|
|
933
|
+
"name"
|
|
934
|
+
],
|
|
935
|
+
"properties": {
|
|
936
|
+
"name": {
|
|
937
|
+
"enum": [
|
|
938
|
+
"node",
|
|
939
|
+
"python",
|
|
940
|
+
"static"
|
|
941
|
+
]
|
|
942
|
+
},
|
|
943
|
+
"version": {
|
|
944
|
+
"anyOf": [
|
|
945
|
+
{
|
|
946
|
+
"type": "string"
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
"type": "null"
|
|
950
|
+
}
|
|
951
|
+
]
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
},
|
|
955
|
+
"profile": {
|
|
956
|
+
"enum": [
|
|
957
|
+
"node-full",
|
|
958
|
+
"next-standalone",
|
|
959
|
+
"static",
|
|
960
|
+
"python-venv"
|
|
961
|
+
]
|
|
962
|
+
},
|
|
963
|
+
"start_command": {
|
|
964
|
+
"anyOf": [
|
|
965
|
+
{
|
|
966
|
+
"type": "string",
|
|
967
|
+
"minLength": 1,
|
|
968
|
+
"maxLength": 2048
|
|
969
|
+
},
|
|
970
|
+
{
|
|
971
|
+
"type": "null"
|
|
972
|
+
}
|
|
973
|
+
]
|
|
974
|
+
},
|
|
975
|
+
"static": {
|
|
976
|
+
"type": "object",
|
|
977
|
+
"required": [
|
|
978
|
+
"spa"
|
|
979
|
+
],
|
|
980
|
+
"properties": {
|
|
981
|
+
"spa": {
|
|
982
|
+
"type": "boolean"
|
|
983
|
+
}
|
|
984
|
+
}
|
|
985
|
+
}
|
|
986
|
+
}
|
|
987
|
+
},
|
|
855
988
|
"Deployment": {
|
|
856
989
|
"type": "object",
|
|
857
990
|
"required": [
|
|
@@ -891,6 +1024,9 @@
|
|
|
891
1024
|
"source": {
|
|
892
1025
|
"$ref": "#/components/schemas/DeploymentSource"
|
|
893
1026
|
},
|
|
1027
|
+
"artifact": {
|
|
1028
|
+
"$ref": "#/components/schemas/DeploymentArtifact"
|
|
1029
|
+
},
|
|
894
1030
|
"status": {
|
|
895
1031
|
"$ref": "#/components/schemas/DeploymentStatus"
|
|
896
1032
|
},
|
|
@@ -1021,12 +1157,15 @@
|
|
|
1021
1157
|
},
|
|
1022
1158
|
"DeploymentUpdate": {
|
|
1023
1159
|
"type": "object",
|
|
1024
|
-
"required": [
|
|
1025
|
-
"image"
|
|
1026
|
-
],
|
|
1027
1160
|
"properties": {
|
|
1028
1161
|
"image": {
|
|
1029
1162
|
"type": "string"
|
|
1163
|
+
},
|
|
1164
|
+
"artifact": {
|
|
1165
|
+
"$ref": "#/components/schemas/DeploymentArtifact"
|
|
1166
|
+
},
|
|
1167
|
+
"type": {
|
|
1168
|
+
"type": "string"
|
|
1030
1169
|
}
|
|
1031
1170
|
}
|
|
1032
1171
|
},
|
|
@@ -2085,21 +2224,22 @@
|
|
|
2085
2224
|
],
|
|
2086
2225
|
"properties": {
|
|
2087
2226
|
"name": {
|
|
2088
|
-
"type": "string"
|
|
2227
|
+
"type": "string",
|
|
2228
|
+
"minLength": 3,
|
|
2229
|
+
"maxLength": 50,
|
|
2230
|
+
"pattern": "^[A-Za-z0-9][A-Za-z0-9 ._'()&-]*[A-Za-z0-9)]$"
|
|
2089
2231
|
},
|
|
2090
2232
|
"description": {
|
|
2091
2233
|
"type": "string"
|
|
2092
2234
|
},
|
|
2093
|
-
"slug": {
|
|
2094
|
-
"type": "string"
|
|
2095
|
-
},
|
|
2096
2235
|
"collaborators": {
|
|
2097
2236
|
"type": "array",
|
|
2098
2237
|
"items": {
|
|
2099
2238
|
"type": "string"
|
|
2100
2239
|
}
|
|
2101
2240
|
}
|
|
2102
|
-
}
|
|
2241
|
+
},
|
|
2242
|
+
"additionalProperties": false
|
|
2103
2243
|
}
|
|
2104
2244
|
}
|
|
2105
2245
|
}
|
|
@@ -2272,7 +2412,10 @@
|
|
|
2272
2412
|
"type": "object",
|
|
2273
2413
|
"properties": {
|
|
2274
2414
|
"name": {
|
|
2275
|
-
"type": "string"
|
|
2415
|
+
"type": "string",
|
|
2416
|
+
"minLength": 3,
|
|
2417
|
+
"maxLength": 50,
|
|
2418
|
+
"pattern": "^[A-Za-z0-9][A-Za-z0-9 ._'()&-]*[A-Za-z0-9)]$"
|
|
2276
2419
|
},
|
|
2277
2420
|
"description": {
|
|
2278
2421
|
"type": "string"
|
|
@@ -2283,7 +2426,8 @@
|
|
|
2283
2426
|
"type": "string"
|
|
2284
2427
|
}
|
|
2285
2428
|
}
|
|
2286
|
-
}
|
|
2429
|
+
},
|
|
2430
|
+
"additionalProperties": false
|
|
2287
2431
|
}
|
|
2288
2432
|
}
|
|
2289
2433
|
}
|
|
@@ -2618,7 +2762,6 @@
|
|
|
2618
2762
|
"runtime",
|
|
2619
2763
|
"runtime_strategy",
|
|
2620
2764
|
"mode",
|
|
2621
|
-
"build_mode",
|
|
2622
2765
|
"instance_type",
|
|
2623
2766
|
"region",
|
|
2624
2767
|
"status",
|
|
@@ -2676,7 +2819,40 @@
|
|
|
2676
2819
|
"$ref": "#/components/schemas/AppMode"
|
|
2677
2820
|
},
|
|
2678
2821
|
"build_mode": {
|
|
2679
|
-
"
|
|
2822
|
+
"anyOf": [
|
|
2823
|
+
{
|
|
2824
|
+
"enum": [
|
|
2825
|
+
"local",
|
|
2826
|
+
"remote"
|
|
2827
|
+
]
|
|
2828
|
+
},
|
|
2829
|
+
{
|
|
2830
|
+
"type": "null"
|
|
2831
|
+
}
|
|
2832
|
+
]
|
|
2833
|
+
},
|
|
2834
|
+
"deploy_output": {
|
|
2835
|
+
"anyOf": [
|
|
2836
|
+
{
|
|
2837
|
+
"enum": [
|
|
2838
|
+
"image",
|
|
2839
|
+
"artifact"
|
|
2840
|
+
]
|
|
2841
|
+
},
|
|
2842
|
+
{
|
|
2843
|
+
"type": "null"
|
|
2844
|
+
}
|
|
2845
|
+
]
|
|
2846
|
+
},
|
|
2847
|
+
"root_dir": {
|
|
2848
|
+
"anyOf": [
|
|
2849
|
+
{
|
|
2850
|
+
"type": "string"
|
|
2851
|
+
},
|
|
2852
|
+
{
|
|
2853
|
+
"type": "null"
|
|
2854
|
+
}
|
|
2855
|
+
]
|
|
2680
2856
|
},
|
|
2681
2857
|
"coexistence_routing": {
|
|
2682
2858
|
"anyOf": [
|
|
@@ -2825,7 +3001,6 @@
|
|
|
2825
3001
|
"runtime",
|
|
2826
3002
|
"runtime_strategy",
|
|
2827
3003
|
"mode",
|
|
2828
|
-
"build_mode",
|
|
2829
3004
|
"instance_type",
|
|
2830
3005
|
"region",
|
|
2831
3006
|
"status",
|
|
@@ -2883,7 +3058,40 @@
|
|
|
2883
3058
|
"$ref": "#/components/schemas/AppMode"
|
|
2884
3059
|
},
|
|
2885
3060
|
"build_mode": {
|
|
2886
|
-
"
|
|
3061
|
+
"anyOf": [
|
|
3062
|
+
{
|
|
3063
|
+
"enum": [
|
|
3064
|
+
"local",
|
|
3065
|
+
"remote"
|
|
3066
|
+
]
|
|
3067
|
+
},
|
|
3068
|
+
{
|
|
3069
|
+
"type": "null"
|
|
3070
|
+
}
|
|
3071
|
+
]
|
|
3072
|
+
},
|
|
3073
|
+
"deploy_output": {
|
|
3074
|
+
"anyOf": [
|
|
3075
|
+
{
|
|
3076
|
+
"enum": [
|
|
3077
|
+
"image",
|
|
3078
|
+
"artifact"
|
|
3079
|
+
]
|
|
3080
|
+
},
|
|
3081
|
+
{
|
|
3082
|
+
"type": "null"
|
|
3083
|
+
}
|
|
3084
|
+
]
|
|
3085
|
+
},
|
|
3086
|
+
"root_dir": {
|
|
3087
|
+
"anyOf": [
|
|
3088
|
+
{
|
|
3089
|
+
"type": "string"
|
|
3090
|
+
},
|
|
3091
|
+
{
|
|
3092
|
+
"type": "null"
|
|
3093
|
+
}
|
|
3094
|
+
]
|
|
2887
3095
|
},
|
|
2888
3096
|
"coexistence_routing": {
|
|
2889
3097
|
"anyOf": [
|
|
@@ -3041,7 +3249,6 @@
|
|
|
3041
3249
|
"runtime",
|
|
3042
3250
|
"runtime_strategy",
|
|
3043
3251
|
"mode",
|
|
3044
|
-
"build_mode",
|
|
3045
3252
|
"instance_type",
|
|
3046
3253
|
"region",
|
|
3047
3254
|
"status",
|
|
@@ -3099,7 +3306,40 @@
|
|
|
3099
3306
|
"$ref": "#/components/schemas/AppMode"
|
|
3100
3307
|
},
|
|
3101
3308
|
"build_mode": {
|
|
3102
|
-
"
|
|
3309
|
+
"anyOf": [
|
|
3310
|
+
{
|
|
3311
|
+
"enum": [
|
|
3312
|
+
"local",
|
|
3313
|
+
"remote"
|
|
3314
|
+
]
|
|
3315
|
+
},
|
|
3316
|
+
{
|
|
3317
|
+
"type": "null"
|
|
3318
|
+
}
|
|
3319
|
+
]
|
|
3320
|
+
},
|
|
3321
|
+
"deploy_output": {
|
|
3322
|
+
"anyOf": [
|
|
3323
|
+
{
|
|
3324
|
+
"enum": [
|
|
3325
|
+
"image",
|
|
3326
|
+
"artifact"
|
|
3327
|
+
]
|
|
3328
|
+
},
|
|
3329
|
+
{
|
|
3330
|
+
"type": "null"
|
|
3331
|
+
}
|
|
3332
|
+
]
|
|
3333
|
+
},
|
|
3334
|
+
"root_dir": {
|
|
3335
|
+
"anyOf": [
|
|
3336
|
+
{
|
|
3337
|
+
"type": "string"
|
|
3338
|
+
},
|
|
3339
|
+
{
|
|
3340
|
+
"type": "null"
|
|
3341
|
+
}
|
|
3342
|
+
]
|
|
3103
3343
|
},
|
|
3104
3344
|
"coexistence_routing": {
|
|
3105
3345
|
"anyOf": [
|
|
@@ -3228,7 +3468,6 @@
|
|
|
3228
3468
|
"runtime",
|
|
3229
3469
|
"runtime_strategy",
|
|
3230
3470
|
"mode",
|
|
3231
|
-
"build_mode",
|
|
3232
3471
|
"instance_type",
|
|
3233
3472
|
"region",
|
|
3234
3473
|
"status",
|
|
@@ -3286,7 +3525,40 @@
|
|
|
3286
3525
|
"$ref": "#/components/schemas/AppMode"
|
|
3287
3526
|
},
|
|
3288
3527
|
"build_mode": {
|
|
3289
|
-
"
|
|
3528
|
+
"anyOf": [
|
|
3529
|
+
{
|
|
3530
|
+
"enum": [
|
|
3531
|
+
"local",
|
|
3532
|
+
"remote"
|
|
3533
|
+
]
|
|
3534
|
+
},
|
|
3535
|
+
{
|
|
3536
|
+
"type": "null"
|
|
3537
|
+
}
|
|
3538
|
+
]
|
|
3539
|
+
},
|
|
3540
|
+
"deploy_output": {
|
|
3541
|
+
"anyOf": [
|
|
3542
|
+
{
|
|
3543
|
+
"enum": [
|
|
3544
|
+
"image",
|
|
3545
|
+
"artifact"
|
|
3546
|
+
]
|
|
3547
|
+
},
|
|
3548
|
+
{
|
|
3549
|
+
"type": "null"
|
|
3550
|
+
}
|
|
3551
|
+
]
|
|
3552
|
+
},
|
|
3553
|
+
"root_dir": {
|
|
3554
|
+
"anyOf": [
|
|
3555
|
+
{
|
|
3556
|
+
"type": "string"
|
|
3557
|
+
},
|
|
3558
|
+
{
|
|
3559
|
+
"type": "null"
|
|
3560
|
+
}
|
|
3561
|
+
]
|
|
3290
3562
|
},
|
|
3291
3563
|
"coexistence_routing": {
|
|
3292
3564
|
"anyOf": [
|
|
@@ -4405,6 +4677,9 @@
|
|
|
4405
4677
|
"source": {
|
|
4406
4678
|
"$ref": "#/components/schemas/DeploymentSource"
|
|
4407
4679
|
},
|
|
4680
|
+
"artifact": {
|
|
4681
|
+
"$ref": "#/components/schemas/DeploymentArtifact"
|
|
4682
|
+
},
|
|
4408
4683
|
"status": {
|
|
4409
4684
|
"$ref": "#/components/schemas/DeploymentStatus"
|
|
4410
4685
|
},
|
|
@@ -4502,6 +4777,9 @@
|
|
|
4502
4777
|
"source": {
|
|
4503
4778
|
"$ref": "#/components/schemas/DeploymentSource"
|
|
4504
4779
|
},
|
|
4780
|
+
"artifact": {
|
|
4781
|
+
"$ref": "#/components/schemas/DeploymentArtifact"
|
|
4782
|
+
},
|
|
4505
4783
|
"status": {
|
|
4506
4784
|
"$ref": "#/components/schemas/DeploymentStatus"
|
|
4507
4785
|
},
|
|
@@ -4541,12 +4819,15 @@
|
|
|
4541
4819
|
"application/json": {
|
|
4542
4820
|
"schema": {
|
|
4543
4821
|
"type": "object",
|
|
4544
|
-
"required": [
|
|
4545
|
-
"image"
|
|
4546
|
-
],
|
|
4547
4822
|
"properties": {
|
|
4548
4823
|
"image": {
|
|
4549
4824
|
"type": "string"
|
|
4825
|
+
},
|
|
4826
|
+
"artifact": {
|
|
4827
|
+
"$ref": "#/components/schemas/DeploymentArtifact"
|
|
4828
|
+
},
|
|
4829
|
+
"type": {
|
|
4830
|
+
"type": "string"
|
|
4550
4831
|
}
|
|
4551
4832
|
}
|
|
4552
4833
|
}
|
|
@@ -4615,6 +4896,9 @@
|
|
|
4615
4896
|
"source": {
|
|
4616
4897
|
"$ref": "#/components/schemas/DeploymentSource"
|
|
4617
4898
|
},
|
|
4899
|
+
"artifact": {
|
|
4900
|
+
"$ref": "#/components/schemas/DeploymentArtifact"
|
|
4901
|
+
},
|
|
4618
4902
|
"status": {
|
|
4619
4903
|
"$ref": "#/components/schemas/DeploymentStatus"
|
|
4620
4904
|
},
|
|
@@ -4710,6 +4994,9 @@
|
|
|
4710
4994
|
"source": {
|
|
4711
4995
|
"$ref": "#/components/schemas/DeploymentSource"
|
|
4712
4996
|
},
|
|
4997
|
+
"artifact": {
|
|
4998
|
+
"$ref": "#/components/schemas/DeploymentArtifact"
|
|
4999
|
+
},
|
|
4713
5000
|
"status": {
|
|
4714
5001
|
"$ref": "#/components/schemas/DeploymentStatus"
|
|
4715
5002
|
},
|
|
@@ -4774,10 +5061,7 @@
|
|
|
4774
5061
|
"id",
|
|
4775
5062
|
"deployment_id",
|
|
4776
5063
|
"app_id",
|
|
4777
|
-
"team"
|
|
4778
|
-
"content",
|
|
4779
|
-
"truncated",
|
|
4780
|
-
"size"
|
|
5064
|
+
"team"
|
|
4781
5065
|
],
|
|
4782
5066
|
"properties": {
|
|
4783
5067
|
"id": {
|
|
@@ -4801,6 +5085,15 @@
|
|
|
4801
5085
|
"size": {
|
|
4802
5086
|
"type": "number"
|
|
4803
5087
|
},
|
|
5088
|
+
"runtime_content": {
|
|
5089
|
+
"type": "string"
|
|
5090
|
+
},
|
|
5091
|
+
"runtime_truncated": {
|
|
5092
|
+
"type": "boolean"
|
|
5093
|
+
},
|
|
5094
|
+
"runtime_size": {
|
|
5095
|
+
"type": "number"
|
|
5096
|
+
},
|
|
4804
5097
|
"createdAt": {
|
|
4805
5098
|
"type": "string"
|
|
4806
5099
|
},
|