@f-inverse/jammi-client 0.34.0 → 0.35.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.
|
@@ -0,0 +1,231 @@
|
|
|
1
|
+
import type { GenFile, GenMessage, GenService } from "@bufbuild/protobuf/codegenv2";
|
|
2
|
+
import type { EmptySchema } from "@bufbuild/protobuf/wkt";
|
|
3
|
+
import type { Message } from "@bufbuild/protobuf";
|
|
4
|
+
/**
|
|
5
|
+
* Describes the file jammi/v1/lifecycle.proto.
|
|
6
|
+
*/
|
|
7
|
+
export declare const file_jammi_v1_lifecycle: GenFile;
|
|
8
|
+
/**
|
|
9
|
+
* @generated from message jammi.v1.lifecycle.ApplyLicenseRequest
|
|
10
|
+
*/
|
|
11
|
+
export type ApplyLicenseRequest = Message<"jammi.v1.lifecycle.ApplyLicenseRequest"> & {
|
|
12
|
+
/**
|
|
13
|
+
* The signed entitlement file, opaque bytes. Not interpreted on the wire.
|
|
14
|
+
*
|
|
15
|
+
* @generated from field: bytes signed_entitlement = 1;
|
|
16
|
+
*/
|
|
17
|
+
signedEntitlement: Uint8Array;
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* Describes the message jammi.v1.lifecycle.ApplyLicenseRequest.
|
|
21
|
+
* Use `create(ApplyLicenseRequestSchema)` to create a new message.
|
|
22
|
+
*/
|
|
23
|
+
export declare const ApplyLicenseRequestSchema: GenMessage<ApplyLicenseRequest>;
|
|
24
|
+
/**
|
|
25
|
+
* @generated from message jammi.v1.lifecycle.ApplyLicenseResponse
|
|
26
|
+
*/
|
|
27
|
+
export type ApplyLicenseResponse = Message<"jammi.v1.lifecycle.ApplyLicenseResponse"> & {
|
|
28
|
+
/**
|
|
29
|
+
* @generated from field: bool accepted = 1;
|
|
30
|
+
*/
|
|
31
|
+
accepted: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* Human-readable server verdict, printed on rejection.
|
|
34
|
+
*
|
|
35
|
+
* @generated from field: string detail = 2;
|
|
36
|
+
*/
|
|
37
|
+
detail: string;
|
|
38
|
+
};
|
|
39
|
+
/**
|
|
40
|
+
* Describes the message jammi.v1.lifecycle.ApplyLicenseResponse.
|
|
41
|
+
* Use `create(ApplyLicenseResponseSchema)` to create a new message.
|
|
42
|
+
*/
|
|
43
|
+
export declare const ApplyLicenseResponseSchema: GenMessage<ApplyLicenseResponse>;
|
|
44
|
+
/**
|
|
45
|
+
* @generated from message jammi.v1.lifecycle.BootstrapRequest
|
|
46
|
+
*/
|
|
47
|
+
export type BootstrapRequest = Message<"jammi.v1.lifecycle.BootstrapRequest"> & {
|
|
48
|
+
/**
|
|
49
|
+
* @generated from field: string admin_email = 1;
|
|
50
|
+
*/
|
|
51
|
+
adminEmail: string;
|
|
52
|
+
/**
|
|
53
|
+
* @generated from field: string admin_password = 2;
|
|
54
|
+
*/
|
|
55
|
+
adminPassword: string;
|
|
56
|
+
/**
|
|
57
|
+
* Optional display name for the seeded administrator.
|
|
58
|
+
*
|
|
59
|
+
* @generated from field: string admin_name = 3;
|
|
60
|
+
*/
|
|
61
|
+
adminName: string;
|
|
62
|
+
/**
|
|
63
|
+
* Optional shared secret the answering server MAY require. Opaque here.
|
|
64
|
+
*
|
|
65
|
+
* @generated from field: string bootstrap_token = 4;
|
|
66
|
+
*/
|
|
67
|
+
bootstrapToken: string;
|
|
68
|
+
};
|
|
69
|
+
/**
|
|
70
|
+
* Describes the message jammi.v1.lifecycle.BootstrapRequest.
|
|
71
|
+
* Use `create(BootstrapRequestSchema)` to create a new message.
|
|
72
|
+
*/
|
|
73
|
+
export declare const BootstrapRequestSchema: GenMessage<BootstrapRequest>;
|
|
74
|
+
/**
|
|
75
|
+
* @generated from message jammi.v1.lifecycle.BootstrapResponse
|
|
76
|
+
*/
|
|
77
|
+
export type BootstrapResponse = Message<"jammi.v1.lifecycle.BootstrapResponse"> & {
|
|
78
|
+
/**
|
|
79
|
+
* @generated from field: string dashboard_url = 1;
|
|
80
|
+
*/
|
|
81
|
+
dashboardUrl: string;
|
|
82
|
+
/**
|
|
83
|
+
* One-time credential; the operator changes it on first login.
|
|
84
|
+
*
|
|
85
|
+
* @generated from field: string first_login_credential = 2;
|
|
86
|
+
*/
|
|
87
|
+
firstLoginCredential: string;
|
|
88
|
+
};
|
|
89
|
+
/**
|
|
90
|
+
* Describes the message jammi.v1.lifecycle.BootstrapResponse.
|
|
91
|
+
* Use `create(BootstrapResponseSchema)` to create a new message.
|
|
92
|
+
*/
|
|
93
|
+
export declare const BootstrapResponseSchema: GenMessage<BootstrapResponse>;
|
|
94
|
+
/**
|
|
95
|
+
* @generated from message jammi.v1.lifecycle.PlatformStatus
|
|
96
|
+
*/
|
|
97
|
+
export type PlatformStatus = Message<"jammi.v1.lifecycle.PlatformStatus"> & {
|
|
98
|
+
/**
|
|
99
|
+
* @generated from field: bool bootstrapped = 1;
|
|
100
|
+
*/
|
|
101
|
+
bootstrapped: boolean;
|
|
102
|
+
/**
|
|
103
|
+
* @generated from field: bool licensed = 2;
|
|
104
|
+
*/
|
|
105
|
+
licensed: boolean;
|
|
106
|
+
/**
|
|
107
|
+
* A server-defined state string (the answering server's vocabulary).
|
|
108
|
+
*
|
|
109
|
+
* @generated from field: string license_state = 3;
|
|
110
|
+
*/
|
|
111
|
+
licenseState: string;
|
|
112
|
+
/**
|
|
113
|
+
* @generated from field: string platform_version = 4;
|
|
114
|
+
*/
|
|
115
|
+
platformVersion: string;
|
|
116
|
+
};
|
|
117
|
+
/**
|
|
118
|
+
* Describes the message jammi.v1.lifecycle.PlatformStatus.
|
|
119
|
+
* Use `create(PlatformStatusSchema)` to create a new message.
|
|
120
|
+
*/
|
|
121
|
+
export declare const PlatformStatusSchema: GenMessage<PlatformStatus>;
|
|
122
|
+
/**
|
|
123
|
+
* @generated from message jammi.v1.lifecycle.LoginRequest
|
|
124
|
+
*/
|
|
125
|
+
export type LoginRequest = Message<"jammi.v1.lifecycle.LoginRequest"> & {
|
|
126
|
+
/**
|
|
127
|
+
* @generated from field: string email = 1;
|
|
128
|
+
*/
|
|
129
|
+
email: string;
|
|
130
|
+
/**
|
|
131
|
+
* @generated from field: string password = 2;
|
|
132
|
+
*/
|
|
133
|
+
password: string;
|
|
134
|
+
};
|
|
135
|
+
/**
|
|
136
|
+
* Describes the message jammi.v1.lifecycle.LoginRequest.
|
|
137
|
+
* Use `create(LoginRequestSchema)` to create a new message.
|
|
138
|
+
*/
|
|
139
|
+
export declare const LoginRequestSchema: GenMessage<LoginRequest>;
|
|
140
|
+
/**
|
|
141
|
+
* @generated from message jammi.v1.lifecycle.LoginResponse
|
|
142
|
+
*/
|
|
143
|
+
export type LoginResponse = Message<"jammi.v1.lifecycle.LoginResponse"> & {
|
|
144
|
+
/**
|
|
145
|
+
* The issued bearer, opaque to the client.
|
|
146
|
+
*
|
|
147
|
+
* @generated from field: string bearer = 1;
|
|
148
|
+
*/
|
|
149
|
+
bearer: string;
|
|
150
|
+
/**
|
|
151
|
+
* Expiry as epoch microseconds. 0 means non-expiring; the issuing server
|
|
152
|
+
* decides expiry policy.
|
|
153
|
+
*
|
|
154
|
+
* @generated from field: int64 expires_at_micros = 2;
|
|
155
|
+
*/
|
|
156
|
+
expiresAtMicros: bigint;
|
|
157
|
+
};
|
|
158
|
+
/**
|
|
159
|
+
* Describes the message jammi.v1.lifecycle.LoginResponse.
|
|
160
|
+
* Use `create(LoginResponseSchema)` to create a new message.
|
|
161
|
+
*/
|
|
162
|
+
export declare const LoginResponseSchema: GenMessage<LoginResponse>;
|
|
163
|
+
/**
|
|
164
|
+
* LifecycleService — the platform on/off + bootstrap + auth boundary.
|
|
165
|
+
*
|
|
166
|
+
* CONTRACT ONLY. These rpcs are defined here so a candle-free client
|
|
167
|
+
* (`jammi-admin` / the `jammi` CLI) can CALL them against a server that
|
|
168
|
+
* implements them, without pulling any implementation dependency. The OSS
|
|
169
|
+
* engine mounts NO implementation of this service: an OSS `jammi-server`
|
|
170
|
+
* answers UNIMPLEMENTED for every rpc below. The server that answers these
|
|
171
|
+
* owns their meaning; the messages here carry only the envelope — opaque
|
|
172
|
+
* bytes, a credential to seed, and a bearer string — never any policy the
|
|
173
|
+
* engine interprets.
|
|
174
|
+
*
|
|
175
|
+
* @generated from service jammi.v1.lifecycle.LifecycleService
|
|
176
|
+
*/
|
|
177
|
+
export declare const LifecycleService: GenService<{
|
|
178
|
+
/**
|
|
179
|
+
* Apply a signed offline entitlement file. `signed_entitlement` is opaque
|
|
180
|
+
* bytes on the wire; the request carries them verbatim and does not
|
|
181
|
+
* interpret them. Whether the file is accepted, and what acceptance means,
|
|
182
|
+
* is the answering server's decision, reported in the response.
|
|
183
|
+
*
|
|
184
|
+
* @generated from rpc jammi.v1.lifecycle.LifecycleService.ApplyLicense
|
|
185
|
+
*/
|
|
186
|
+
applyLicense: {
|
|
187
|
+
methodKind: "unary";
|
|
188
|
+
input: typeof ApplyLicenseRequestSchema;
|
|
189
|
+
output: typeof ApplyLicenseResponseSchema;
|
|
190
|
+
};
|
|
191
|
+
/**
|
|
192
|
+
* Seed the first administrator and return where the dashboard lives plus a
|
|
193
|
+
* one-time first-login credential the operator changes on first login.
|
|
194
|
+
* `admin_name` is an optional display name. `bootstrap_token` is an optional
|
|
195
|
+
* shared secret the answering server MAY require; it is compared server-side
|
|
196
|
+
* and opaque here. Both empty strings map to the proto3 default (field
|
|
197
|
+
* absent on the wire).
|
|
198
|
+
*
|
|
199
|
+
* @generated from rpc jammi.v1.lifecycle.LifecycleService.Bootstrap
|
|
200
|
+
*/
|
|
201
|
+
bootstrap: {
|
|
202
|
+
methodKind: "unary";
|
|
203
|
+
input: typeof BootstrapRequestSchema;
|
|
204
|
+
output: typeof BootstrapResponseSchema;
|
|
205
|
+
};
|
|
206
|
+
/**
|
|
207
|
+
* Report the answering server's liveness / licensed / bootstrapped state —
|
|
208
|
+
* the governance-state analogue of CatalogService.GetServerInfo. The engine
|
|
209
|
+
* has no such state, so an OSS server answers UNIMPLEMENTED.
|
|
210
|
+
*
|
|
211
|
+
* @generated from rpc jammi.v1.lifecycle.LifecycleService.Status
|
|
212
|
+
*/
|
|
213
|
+
status: {
|
|
214
|
+
methodKind: "unary";
|
|
215
|
+
input: typeof EmptySchema;
|
|
216
|
+
output: typeof PlatformStatusSchema;
|
|
217
|
+
};
|
|
218
|
+
/**
|
|
219
|
+
* Exchange an email/password for a bearer. Not OAuth: no device flow, no
|
|
220
|
+
* redirect — a credential in, a bearer out. The bearer is opaque; the
|
|
221
|
+
* answering server decides expiry policy (see LoginResponse).
|
|
222
|
+
*
|
|
223
|
+
* @generated from rpc jammi.v1.lifecycle.LifecycleService.Login
|
|
224
|
+
*/
|
|
225
|
+
login: {
|
|
226
|
+
methodKind: "unary";
|
|
227
|
+
input: typeof LoginRequestSchema;
|
|
228
|
+
output: typeof LoginResponseSchema;
|
|
229
|
+
};
|
|
230
|
+
}>;
|
|
231
|
+
//# sourceMappingURL=lifecycle_pb.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lifecycle_pb.d.ts","sourceRoot":"","sources":["../../../../src/gen/jammi/v1/lifecycle_pb.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
// @generated by protoc-gen-es v2.12.0 with parameter "target=ts"
|
|
2
|
+
// @generated from file jammi/v1/lifecycle.proto (package jammi.v1.lifecycle, syntax proto3)
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
import { fileDesc, messageDesc, serviceDesc } from "@bufbuild/protobuf/codegenv2";
|
|
5
|
+
import { file_google_protobuf_empty } from "@bufbuild/protobuf/wkt";
|
|
6
|
+
/**
|
|
7
|
+
* Describes the file jammi/v1/lifecycle.proto.
|
|
8
|
+
*/
|
|
9
|
+
export const file_jammi_v1_lifecycle = /*@__PURE__*/ fileDesc("ChhqYW1taS92MS9saWZlY3ljbGUucHJvdG8SEmphbW1pLnYxLmxpZmVjeWNsZSIxChNBcHBseUxpY2Vuc2VSZXF1ZXN0EhoKEnNpZ25lZF9lbnRpdGxlbWVudBgBIAEoDCI4ChRBcHBseUxpY2Vuc2VSZXNwb25zZRIQCghhY2NlcHRlZBgBIAEoCBIOCgZkZXRhaWwYAiABKAkibAoQQm9vdHN0cmFwUmVxdWVzdBITCgthZG1pbl9lbWFpbBgBIAEoCRIWCg5hZG1pbl9wYXNzd29yZBgCIAEoCRISCgphZG1pbl9uYW1lGAMgASgJEhcKD2Jvb3RzdHJhcF90b2tlbhgEIAEoCSJKChFCb290c3RyYXBSZXNwb25zZRIVCg1kYXNoYm9hcmRfdXJsGAEgASgJEh4KFmZpcnN0X2xvZ2luX2NyZWRlbnRpYWwYAiABKAkiaQoOUGxhdGZvcm1TdGF0dXMSFAoMYm9vdHN0cmFwcGVkGAEgASgIEhAKCGxpY2Vuc2VkGAIgASgIEhUKDWxpY2Vuc2Vfc3RhdGUYAyABKAkSGAoQcGxhdGZvcm1fdmVyc2lvbhgEIAEoCSIvCgxMb2dpblJlcXVlc3QSDQoFZW1haWwYASABKAkSEAoIcGFzc3dvcmQYAiABKAkiOgoNTG9naW5SZXNwb25zZRIOCgZiZWFyZXIYASABKAkSGQoRZXhwaXJlc19hdF9taWNyb3MYAiABKAMy4wIKEExpZmVjeWNsZVNlcnZpY2USYQoMQXBwbHlMaWNlbnNlEicuamFtbWkudjEubGlmZWN5Y2xlLkFwcGx5TGljZW5zZVJlcXVlc3QaKC5qYW1taS52MS5saWZlY3ljbGUuQXBwbHlMaWNlbnNlUmVzcG9uc2USWAoJQm9vdHN0cmFwEiQuamFtbWkudjEubGlmZWN5Y2xlLkJvb3RzdHJhcFJlcXVlc3QaJS5qYW1taS52MS5saWZlY3ljbGUuQm9vdHN0cmFwUmVzcG9uc2USRAoGU3RhdHVzEhYuZ29vZ2xlLnByb3RvYnVmLkVtcHR5GiIuamFtbWkudjEubGlmZWN5Y2xlLlBsYXRmb3JtU3RhdHVzEkwKBUxvZ2luEiAuamFtbWkudjEubGlmZWN5Y2xlLkxvZ2luUmVxdWVzdBohLmphbW1pLnYxLmxpZmVjeWNsZS5Mb2dpblJlc3BvbnNlYgZwcm90bzM", [file_google_protobuf_empty]);
|
|
10
|
+
/**
|
|
11
|
+
* Describes the message jammi.v1.lifecycle.ApplyLicenseRequest.
|
|
12
|
+
* Use `create(ApplyLicenseRequestSchema)` to create a new message.
|
|
13
|
+
*/
|
|
14
|
+
export const ApplyLicenseRequestSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_lifecycle, 0);
|
|
15
|
+
/**
|
|
16
|
+
* Describes the message jammi.v1.lifecycle.ApplyLicenseResponse.
|
|
17
|
+
* Use `create(ApplyLicenseResponseSchema)` to create a new message.
|
|
18
|
+
*/
|
|
19
|
+
export const ApplyLicenseResponseSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_lifecycle, 1);
|
|
20
|
+
/**
|
|
21
|
+
* Describes the message jammi.v1.lifecycle.BootstrapRequest.
|
|
22
|
+
* Use `create(BootstrapRequestSchema)` to create a new message.
|
|
23
|
+
*/
|
|
24
|
+
export const BootstrapRequestSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_lifecycle, 2);
|
|
25
|
+
/**
|
|
26
|
+
* Describes the message jammi.v1.lifecycle.BootstrapResponse.
|
|
27
|
+
* Use `create(BootstrapResponseSchema)` to create a new message.
|
|
28
|
+
*/
|
|
29
|
+
export const BootstrapResponseSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_lifecycle, 3);
|
|
30
|
+
/**
|
|
31
|
+
* Describes the message jammi.v1.lifecycle.PlatformStatus.
|
|
32
|
+
* Use `create(PlatformStatusSchema)` to create a new message.
|
|
33
|
+
*/
|
|
34
|
+
export const PlatformStatusSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_lifecycle, 4);
|
|
35
|
+
/**
|
|
36
|
+
* Describes the message jammi.v1.lifecycle.LoginRequest.
|
|
37
|
+
* Use `create(LoginRequestSchema)` to create a new message.
|
|
38
|
+
*/
|
|
39
|
+
export const LoginRequestSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_lifecycle, 5);
|
|
40
|
+
/**
|
|
41
|
+
* Describes the message jammi.v1.lifecycle.LoginResponse.
|
|
42
|
+
* Use `create(LoginResponseSchema)` to create a new message.
|
|
43
|
+
*/
|
|
44
|
+
export const LoginResponseSchema = /*@__PURE__*/ messageDesc(file_jammi_v1_lifecycle, 6);
|
|
45
|
+
/**
|
|
46
|
+
* LifecycleService — the platform on/off + bootstrap + auth boundary.
|
|
47
|
+
*
|
|
48
|
+
* CONTRACT ONLY. These rpcs are defined here so a candle-free client
|
|
49
|
+
* (`jammi-admin` / the `jammi` CLI) can CALL them against a server that
|
|
50
|
+
* implements them, without pulling any implementation dependency. The OSS
|
|
51
|
+
* engine mounts NO implementation of this service: an OSS `jammi-server`
|
|
52
|
+
* answers UNIMPLEMENTED for every rpc below. The server that answers these
|
|
53
|
+
* owns their meaning; the messages here carry only the envelope — opaque
|
|
54
|
+
* bytes, a credential to seed, and a bearer string — never any policy the
|
|
55
|
+
* engine interprets.
|
|
56
|
+
*
|
|
57
|
+
* @generated from service jammi.v1.lifecycle.LifecycleService
|
|
58
|
+
*/
|
|
59
|
+
export const LifecycleService = /*@__PURE__*/ serviceDesc(file_jammi_v1_lifecycle, 0);
|
|
60
|
+
//# sourceMappingURL=lifecycle_pb.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"lifecycle_pb.js","sourceRoot":"","sources":["../../../../src/gen/jammi/v1/lifecycle_pb.ts"],"names":[],"mappings":"AAAA,iEAAiE;AACjE,4FAA4F;AAC5F,oBAAoB;AAGpB,OAAO,EAAE,QAAQ,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,8BAA8B,CAAC;AAElF,OAAO,EAAE,0BAA0B,EAAE,MAAM,wBAAwB,CAAC;AAGpE;;GAEG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAY,aAAa,CAC3D,QAAQ,CAAC,itCAAitC,EAAE,CAAC,0BAA0B,CAAC,CAAC,CAAC;AAc5vC;;;GAGG;AACH,MAAM,CAAC,MAAM,yBAAyB,GAAoC,aAAa,CACrF,WAAW,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAC;AAmB1C;;;GAGG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAqC,aAAa,CACvF,WAAW,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAC;AA+B1C;;;GAGG;AACH,MAAM,CAAC,MAAM,sBAAsB,GAAiC,aAAa,CAC/E,WAAW,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAC;AAmB1C;;;GAGG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAkC,aAAa,CACjF,WAAW,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAC;AA6B1C;;;GAGG;AACH,MAAM,CAAC,MAAM,oBAAoB,GAA+B,aAAa,CAC3E,WAAW,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAC;AAiB1C;;;GAGG;AACH,MAAM,CAAC,MAAM,kBAAkB,GAA6B,aAAa,CACvE,WAAW,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAC;AAsB1C;;;GAGG;AACH,MAAM,CAAC,MAAM,mBAAmB,GAA8B,aAAa,CACzE,WAAW,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAC;AAE1C;;;;;;;;;;;;;GAaG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAqDxB,aAAa,CAChB,WAAW,CAAC,uBAAuB,EAAE,CAAC,CAAC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@f-inverse/jammi-client",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.35.0",
|
|
4
4
|
"description": "Official TypeScript gRPC-web client for the Jammi engine, generated from the canonical jammi.v1 proto. Runs on fetch (Cloudflare Workers / V8 isolates).",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|