@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.
@@ -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, CreateApplicationsRequest, CreateApplicationsResponse, CreateVersionRequest, CreateVersionResponse, DeleteApplicationsRequest, DeleteApplicationsResponse, GetEnvRequest, GetEnvResponse, QueryResourcesRequest, QueryResourcesResponse, SetApplicationActiveStatesRequest, SetApplicationActiveStatesResponse, SetApplicationManifestsRequest, SetApplicationManifestsResponse, SetEnvRequest, SetEnvResponse, SetVersionSandboxStatesRequest, SetVersionSandboxStatesResponse, StatBundleRequest, StatBundleResponse, UploadBundleRequest, UploadBundleResponse, VersionsRequest, VersionsResponse } from "./catalog_pb.js";
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
- * @generated from rpc liquidmetal.v1alpha1.CatalogService.CreateApplications
61
+ * Deploy creates a new version, or branch, or amends in place.
62
+ *
63
+ * @generated from rpc liquidmetal.v1alpha1.CatalogService.Deploy
78
64
  */
79
- createApplications: {
80
- name: "CreateApplications",
81
- I: CreateApplicationsRequest,
82
- O: CreateApplicationsResponse,
65
+ deploy: {
66
+ name: "Deploy",
67
+ I: DeployRequest,
68
+ O: DeployResponse,
83
69
  kind: MethodKind.Unary,
84
70
  },
85
71
  /**
86
- * @generated from rpc liquidmetal.v1alpha1.CatalogService.SetApplicationActiveStates
72
+ * UploadBundle uploads a bundle for a specific application version.
73
+ *
74
+ * @generated from rpc liquidmetal.v1alpha1.CatalogService.UploadBundle
87
75
  */
88
- setApplicationActiveStates: {
89
- name: "SetApplicationActiveStates",
90
- I: SetApplicationActiveStatesRequest,
91
- O: SetApplicationActiveStatesResponse,
76
+ uploadBundle: {
77
+ name: "UploadBundle",
78
+ I: UploadBundleRequest,
79
+ O: UploadBundleResponse,
92
80
  kind: MethodKind.Unary,
93
81
  },
94
82
  /**
95
- * @generated from rpc liquidmetal.v1alpha1.CatalogService.DeleteApplications
83
+ * SetEnvs sets multiple environment variables for an application/version.
84
+ *
85
+ * @generated from rpc liquidmetal.v1alpha1.CatalogService.SetEnvs
96
86
  */
97
- deleteApplications: {
98
- name: "DeleteApplications",
99
- I: DeleteApplicationsRequest,
100
- O: DeleteApplicationsResponse,
87
+ setEnvs: {
88
+ name: "SetEnvs",
89
+ I: SetEnvsRequest,
90
+ O: SetEnvsResponse,
101
91
  kind: MethodKind.Unary,
102
92
  },
103
93
  /**
104
- * @generated from rpc liquidmetal.v1alpha1.CatalogService.SetApplicationManifests
94
+ * GetEnvs gets multiple environment variables for an application/version.
95
+ *
96
+ * @generated from rpc liquidmetal.v1alpha1.CatalogService.GetEnvs
105
97
  */
106
- setApplicationManifests: {
107
- name: "SetApplicationManifests",
108
- I: SetApplicationManifestsRequest,
109
- O: SetApplicationManifestsResponse,
98
+ getEnvs: {
99
+ name: "GetEnvs",
100
+ I: GetEnvsRequest,
101
+ O: GetEnvsResponse,
110
102
  kind: MethodKind.Unary,
111
103
  },
112
104
  /**
113
- * UploadBundle uploads a bundle for a specific application version.
105
+ * Release allows a deployed application to converge.
114
106
  *
115
- * @generated from rpc liquidmetal.v1alpha1.CatalogService.UploadBundle
107
+ * @generated from rpc liquidmetal.v1alpha1.CatalogService.Release
116
108
  */
117
- uploadBundle: {
118
- name: "UploadBundle",
119
- I: UploadBundleRequest,
120
- O: UploadBundleResponse,
109
+ release: {
110
+ name: "Release",
111
+ I: ReleaseRequest,
112
+ O: ReleaseResponse,
121
113
  kind: MethodKind.Unary,
122
114
  },
123
115
  /**
124
- * StatBundle returns the metadata for a bundle.
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.StatBundle
129
+ * @generated from rpc liquidmetal.v1alpha1.CatalogService.Delete
127
130
  */
128
- statBundle: {
129
- name: "StatBundle",
130
- I: StatBundleRequest,
131
- O: StatBundleResponse,
131
+ delete: {
132
+ name: "Delete",
133
+ I: DeleteRequest,
134
+ O: DeleteResponse,
132
135
  kind: MethodKind.Unary,
133
136
  },
134
137
  /**
135
- * SetEnv sets an environment variable for an application/version.
138
+ * setActive sets application active/inactive (start/stop) state.
136
139
  *
137
- * @generated from rpc liquidmetal.v1alpha1.CatalogService.SetEnv
140
+ * @generated from rpc liquidmetal.v1alpha1.CatalogService.SetActive
138
141
  */
139
- setEnv: {
140
- name: "SetEnv",
141
- I: SetEnvRequest,
142
- O: SetEnvResponse,
142
+ setActive: {
143
+ name: "SetActive",
144
+ I: SetActiveRequest,
145
+ O: SetActiveResponse,
143
146
  kind: MethodKind.Unary,
144
147
  },
145
148
  /**
146
- * GetEnv gets an environment variable for an application/version.
149
+ * setSandbox sets application sandboxed/unsandboxed state.
147
150
  *
148
- * @generated from rpc liquidmetal.v1alpha1.CatalogService.GetEnv
151
+ * @generated from rpc liquidmetal.v1alpha1.CatalogService.SetSandbox
149
152
  */
150
- getEnv: {
151
- name: "GetEnv",
152
- I: GetEnvRequest,
153
- O: GetEnvResponse,
153
+ setSandbox: {
154
+ name: "SetSandbox",
155
+ I: SetSandboxRequest,
156
+ O: SetSandboxResponse,
154
157
  kind: MethodKind.Unary,
155
158
  },
156
159
  /**
157
- * QueryResources returns the physical underlying resources for a given query
160
+ * Status returns the status of an application@version.
158
161
  *
159
- * @generated from rpc liquidmetal.v1alpha1.CatalogService.QueryResources
162
+ * @generated from rpc liquidmetal.v1alpha1.CatalogService.Status
160
163
  */
161
- queryResources: {
162
- name: "QueryResources",
163
- I: QueryResourcesRequest,
164
- O: QueryResourcesResponse,
164
+ status: {
165
+ name: "Status",
166
+ I: StatusRequest,
167
+ O: StatusResponse,
165
168
  kind: MethodKind.Unary,
166
169
  },
167
170
  }