@liquidmetal-ai/drizzle 0.1.3 → 0.2.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/.turbo/turbo-lint.log +6 -0
- package/.turbo/turbo-test.log +6 -0
- package/dist/appify/build.d.ts +32 -2
- package/dist/appify/build.d.ts.map +1 -1
- package/dist/appify/build.js +166 -24
- package/dist/appify/build.test.js +75 -3
- package/dist/appify/validate.d.ts +2 -1
- package/dist/appify/validate.d.ts.map +1 -1
- package/dist/appify/validate.js +71 -2
- package/dist/appify/validate.test.js +74 -4
- package/dist/codestore.js +2 -2
- package/dist/liquidmetal/v1alpha1/catalog_connect.d.ts +81 -78
- package/dist/liquidmetal/v1alpha1/catalog_connect.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/catalog_connect.js +81 -78
- package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts +572 -610
- package/dist/liquidmetal/v1alpha1/catalog_pb.d.ts.map +1 -1
- package/dist/liquidmetal/v1alpha1/catalog_pb.js +675 -741
- package/package.json +1 -1
- package/src/appify/build.test.ts +85 -3
- package/src/appify/build.ts +181 -25
- package/src/appify/validate.test.ts +77 -4
- package/src/appify/validate.ts +78 -1
- package/src/codestore.ts +2 -2
- package/src/liquidmetal/v1alpha1/catalog_connect.ts +81 -78
- package/src/liquidmetal/v1alpha1/catalog_pb.ts +872 -970
- package/.turbo/turbo-build.log +0 -30
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// @generated from file liquidmetal/v1alpha1/catalog.proto (package liquidmetal.v1alpha1, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
|
-
import { ApplicationsRequest, ApplicationsResponse, BootstrapRequest, BootstrapResponse,
|
|
5
|
+
import { ApplicationsRequest, ApplicationsResponse, BootstrapRequest, BootstrapResponse, DeleteRequest, DeleteResponse, DeployRequest, DeployResponse, GetEnvsRequest, GetEnvsResponse, QueryResourcesRequest, QueryResourcesResponse, ReleaseRequest, ReleaseResponse, SetActiveRequest, SetActiveResponse, SetEnvsRequest, SetEnvsResponse, SetSandboxRequest, SetSandboxResponse, StatusRequest, StatusResponse, UploadBundleRequest, UploadBundleResponse, WatchRequest, WatchResponse } from "./catalog_pb.js";
|
|
6
6
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
7
7
|
/**
|
|
8
8
|
* CatalogService defines data interactions for the catalog portion of the
|
|
@@ -21,6 +21,17 @@ import { MethodKind } from "@bufbuild/protobuf";
|
|
|
21
21
|
export const CatalogService = {
|
|
22
22
|
typeName: "liquidmetal.v1alpha1.CatalogService",
|
|
23
23
|
methods: {
|
|
24
|
+
/**
|
|
25
|
+
* QueryResources returns the physical underlying resources for a given query
|
|
26
|
+
*
|
|
27
|
+
* @generated from rpc liquidmetal.v1alpha1.CatalogService.QueryResources
|
|
28
|
+
*/
|
|
29
|
+
queryResources: {
|
|
30
|
+
name: "QueryResources",
|
|
31
|
+
I: QueryResourcesRequest,
|
|
32
|
+
O: QueryResourcesResponse,
|
|
33
|
+
kind: MethodKind.Unary,
|
|
34
|
+
},
|
|
24
35
|
/**
|
|
25
36
|
* Bootstrap is a special RPC that is used to bootstrap the system
|
|
26
37
|
* using a one-time token.
|
|
@@ -33,33 +44,6 @@ export const CatalogService = {
|
|
|
33
44
|
O: BootstrapResponse,
|
|
34
45
|
kind: MethodKind.Unary,
|
|
35
46
|
},
|
|
36
|
-
/**
|
|
37
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.Versions
|
|
38
|
-
*/
|
|
39
|
-
versions: {
|
|
40
|
-
name: "Versions",
|
|
41
|
-
I: VersionsRequest,
|
|
42
|
-
O: VersionsResponse,
|
|
43
|
-
kind: MethodKind.Unary,
|
|
44
|
-
},
|
|
45
|
-
/**
|
|
46
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.CreateVersion
|
|
47
|
-
*/
|
|
48
|
-
createVersion: {
|
|
49
|
-
name: "CreateVersion",
|
|
50
|
-
I: CreateVersionRequest,
|
|
51
|
-
O: CreateVersionResponse,
|
|
52
|
-
kind: MethodKind.Unary,
|
|
53
|
-
},
|
|
54
|
-
/**
|
|
55
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.SetVersionSandboxStates
|
|
56
|
-
*/
|
|
57
|
-
setVersionSandboxStates: {
|
|
58
|
-
name: "SetVersionSandboxStates",
|
|
59
|
-
I: SetVersionSandboxStatesRequest,
|
|
60
|
-
O: SetVersionSandboxStatesResponse,
|
|
61
|
-
kind: MethodKind.Unary,
|
|
62
|
-
},
|
|
63
47
|
/**
|
|
64
48
|
* Applications fetches a list of applications for an organization.
|
|
65
49
|
* This list follows best practices for pagination.
|
|
@@ -74,94 +58,113 @@ export const CatalogService = {
|
|
|
74
58
|
kind: MethodKind.Unary,
|
|
75
59
|
},
|
|
76
60
|
/**
|
|
77
|
-
*
|
|
61
|
+
* Deploy creates a new version, or branch, or amends in place.
|
|
62
|
+
*
|
|
63
|
+
* @generated from rpc liquidmetal.v1alpha1.CatalogService.Deploy
|
|
78
64
|
*/
|
|
79
|
-
|
|
80
|
-
name: "
|
|
81
|
-
I:
|
|
82
|
-
O:
|
|
65
|
+
deploy: {
|
|
66
|
+
name: "Deploy",
|
|
67
|
+
I: DeployRequest,
|
|
68
|
+
O: DeployResponse,
|
|
83
69
|
kind: MethodKind.Unary,
|
|
84
70
|
},
|
|
85
71
|
/**
|
|
86
|
-
*
|
|
72
|
+
* UploadBundle uploads a bundle for a specific application version.
|
|
73
|
+
*
|
|
74
|
+
* @generated from rpc liquidmetal.v1alpha1.CatalogService.UploadBundle
|
|
87
75
|
*/
|
|
88
|
-
|
|
89
|
-
name: "
|
|
90
|
-
I:
|
|
91
|
-
O:
|
|
76
|
+
uploadBundle: {
|
|
77
|
+
name: "UploadBundle",
|
|
78
|
+
I: UploadBundleRequest,
|
|
79
|
+
O: UploadBundleResponse,
|
|
92
80
|
kind: MethodKind.Unary,
|
|
93
81
|
},
|
|
94
82
|
/**
|
|
95
|
-
*
|
|
83
|
+
* SetEnvs sets multiple environment variables for an application/version.
|
|
84
|
+
*
|
|
85
|
+
* @generated from rpc liquidmetal.v1alpha1.CatalogService.SetEnvs
|
|
96
86
|
*/
|
|
97
|
-
|
|
98
|
-
name: "
|
|
99
|
-
I:
|
|
100
|
-
O:
|
|
87
|
+
setEnvs: {
|
|
88
|
+
name: "SetEnvs",
|
|
89
|
+
I: SetEnvsRequest,
|
|
90
|
+
O: SetEnvsResponse,
|
|
101
91
|
kind: MethodKind.Unary,
|
|
102
92
|
},
|
|
103
93
|
/**
|
|
104
|
-
*
|
|
94
|
+
* GetEnvs gets multiple environment variables for an application/version.
|
|
95
|
+
*
|
|
96
|
+
* @generated from rpc liquidmetal.v1alpha1.CatalogService.GetEnvs
|
|
105
97
|
*/
|
|
106
|
-
|
|
107
|
-
name: "
|
|
108
|
-
I:
|
|
109
|
-
O:
|
|
98
|
+
getEnvs: {
|
|
99
|
+
name: "GetEnvs",
|
|
100
|
+
I: GetEnvsRequest,
|
|
101
|
+
O: GetEnvsResponse,
|
|
110
102
|
kind: MethodKind.Unary,
|
|
111
103
|
},
|
|
112
104
|
/**
|
|
113
|
-
*
|
|
105
|
+
* Release allows a deployed application to converge.
|
|
114
106
|
*
|
|
115
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.
|
|
107
|
+
* @generated from rpc liquidmetal.v1alpha1.CatalogService.Release
|
|
116
108
|
*/
|
|
117
|
-
|
|
118
|
-
name: "
|
|
119
|
-
I:
|
|
120
|
-
O:
|
|
109
|
+
release: {
|
|
110
|
+
name: "Release",
|
|
111
|
+
I: ReleaseRequest,
|
|
112
|
+
O: ReleaseResponse,
|
|
121
113
|
kind: MethodKind.Unary,
|
|
122
114
|
},
|
|
123
115
|
/**
|
|
124
|
-
*
|
|
116
|
+
* Watch attaches a watcher to the ring buffer associated with an application.
|
|
117
|
+
*
|
|
118
|
+
* @generated from rpc liquidmetal.v1alpha1.CatalogService.Watch
|
|
119
|
+
*/
|
|
120
|
+
watch: {
|
|
121
|
+
name: "Watch",
|
|
122
|
+
I: WatchRequest,
|
|
123
|
+
O: WatchResponse,
|
|
124
|
+
kind: MethodKind.ServerStreaming,
|
|
125
|
+
},
|
|
126
|
+
/**
|
|
127
|
+
* Delete sets an application to deleting.
|
|
125
128
|
*
|
|
126
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.
|
|
129
|
+
* @generated from rpc liquidmetal.v1alpha1.CatalogService.Delete
|
|
127
130
|
*/
|
|
128
|
-
|
|
129
|
-
name: "
|
|
130
|
-
I:
|
|
131
|
-
O:
|
|
131
|
+
delete: {
|
|
132
|
+
name: "Delete",
|
|
133
|
+
I: DeleteRequest,
|
|
134
|
+
O: DeleteResponse,
|
|
132
135
|
kind: MethodKind.Unary,
|
|
133
136
|
},
|
|
134
137
|
/**
|
|
135
|
-
*
|
|
138
|
+
* setActive sets application active/inactive (start/stop) state.
|
|
136
139
|
*
|
|
137
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.
|
|
140
|
+
* @generated from rpc liquidmetal.v1alpha1.CatalogService.SetActive
|
|
138
141
|
*/
|
|
139
|
-
|
|
140
|
-
name: "
|
|
141
|
-
I:
|
|
142
|
-
O:
|
|
142
|
+
setActive: {
|
|
143
|
+
name: "SetActive",
|
|
144
|
+
I: SetActiveRequest,
|
|
145
|
+
O: SetActiveResponse,
|
|
143
146
|
kind: MethodKind.Unary,
|
|
144
147
|
},
|
|
145
148
|
/**
|
|
146
|
-
*
|
|
149
|
+
* setSandbox sets application sandboxed/unsandboxed state.
|
|
147
150
|
*
|
|
148
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.
|
|
151
|
+
* @generated from rpc liquidmetal.v1alpha1.CatalogService.SetSandbox
|
|
149
152
|
*/
|
|
150
|
-
|
|
151
|
-
name: "
|
|
152
|
-
I:
|
|
153
|
-
O:
|
|
153
|
+
setSandbox: {
|
|
154
|
+
name: "SetSandbox",
|
|
155
|
+
I: SetSandboxRequest,
|
|
156
|
+
O: SetSandboxResponse,
|
|
154
157
|
kind: MethodKind.Unary,
|
|
155
158
|
},
|
|
156
159
|
/**
|
|
157
|
-
*
|
|
160
|
+
* Status returns the status of an application@version.
|
|
158
161
|
*
|
|
159
|
-
* @generated from rpc liquidmetal.v1alpha1.CatalogService.
|
|
162
|
+
* @generated from rpc liquidmetal.v1alpha1.CatalogService.Status
|
|
160
163
|
*/
|
|
161
|
-
|
|
162
|
-
name: "
|
|
163
|
-
I:
|
|
164
|
-
O:
|
|
164
|
+
status: {
|
|
165
|
+
name: "Status",
|
|
166
|
+
I: StatusRequest,
|
|
167
|
+
O: StatusResponse,
|
|
165
168
|
kind: MethodKind.Unary,
|
|
166
169
|
},
|
|
167
170
|
}
|