@kernelminds/scailo-sdk 0.1.10 → 0.1.11

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.
Files changed (31) hide show
  1. package/lib/cjs/index.js +0 -34
  2. package/lib/cjs/src/families.scailo_connect.js +11 -0
  3. package/lib/cjs/src/vault_commons.scailo_pb.js +69 -5
  4. package/lib/cjs/types/index.d.ts +0 -31
  5. package/lib/cjs/types/index.d.ts.map +1 -1
  6. package/lib/cjs/types/src/families.scailo_connect.d.ts +11 -0
  7. package/lib/cjs/types/src/families.scailo_connect.d.ts.map +1 -1
  8. package/lib/cjs/types/src/vault_commons.scailo_pb.d.ts +49 -3
  9. package/lib/cjs/types/src/vault_commons.scailo_pb.d.ts.map +1 -1
  10. package/lib/esm/index.js +0 -34
  11. package/lib/esm/src/families.scailo_connect.js +11 -0
  12. package/lib/esm/src/vault_commons.scailo_pb.js +69 -5
  13. package/lib/esm/types/index.d.ts +0 -31
  14. package/lib/esm/types/index.d.ts.map +1 -1
  15. package/lib/esm/types/src/families.scailo_connect.d.ts +11 -0
  16. package/lib/esm/types/src/families.scailo_connect.d.ts.map +1 -1
  17. package/lib/esm/types/src/vault_commons.scailo_pb.d.ts +49 -3
  18. package/lib/esm/types/src/vault_commons.scailo_pb.d.ts.map +1 -1
  19. package/package.json +1 -1
  20. package/lib/cjs/src/qc_hubs.scailo_connect.js +0 -244
  21. package/lib/cjs/src/qc_hubs.scailo_pb.js +0 -879
  22. package/lib/cjs/types/src/qc_hubs.scailo_connect.d.ts +0 -238
  23. package/lib/cjs/types/src/qc_hubs.scailo_connect.d.ts.map +0 -1
  24. package/lib/cjs/types/src/qc_hubs.scailo_pb.d.ts +0 -678
  25. package/lib/cjs/types/src/qc_hubs.scailo_pb.d.ts.map +0 -1
  26. package/lib/esm/src/qc_hubs.scailo_connect.js +0 -244
  27. package/lib/esm/src/qc_hubs.scailo_pb.js +0 -891
  28. package/lib/esm/types/src/qc_hubs.scailo_connect.d.ts +0 -238
  29. package/lib/esm/types/src/qc_hubs.scailo_connect.d.ts.map +0 -1
  30. package/lib/esm/types/src/qc_hubs.scailo_pb.d.ts +0 -678
  31. package/lib/esm/types/src/qc_hubs.scailo_pb.d.ts.map +0 -1
@@ -1,238 +0,0 @@
1
- import { QCHub, QCHubsList, QCHubsServiceCountReq, QCHubsServiceCreateRequest, QCHubsServiceFilterReq, QCHubsServicePaginationReq, QCHubsServicePaginationResponse, QCHubsServiceSearchAllReq, QCHubsServiceUpdateRequest } from "./qc_hubs.scailo_pb.js";
2
- import { ActiveStatus, CountInSLCStatusRequest, CountResponse, Identifier, IdentifierResponse, IdentifierUUID, IdentifierUUIDWithUserComment } from "./base.scailo_pb.js";
3
- import { MethodKind } from "@bufbuild/protobuf";
4
- /**
5
- *
6
- * Describes the common methods applicable on each qc hub
7
- *
8
- * @generated from service Scailo.QCHubsService
9
- */
10
- export declare const QCHubsService: {
11
- readonly typeName: "Scailo.QCHubsService";
12
- readonly methods: {
13
- /**
14
- * Create and send for verification
15
- *
16
- * @generated from rpc Scailo.QCHubsService.Create
17
- */
18
- readonly create: {
19
- readonly name: "Create";
20
- readonly I: typeof QCHubsServiceCreateRequest;
21
- readonly O: typeof IdentifierResponse;
22
- readonly kind: MethodKind.Unary;
23
- };
24
- /**
25
- * Create and save as draft
26
- *
27
- * @generated from rpc Scailo.QCHubsService.Draft
28
- */
29
- readonly draft: {
30
- readonly name: "Draft";
31
- readonly I: typeof QCHubsServiceCreateRequest;
32
- readonly O: typeof IdentifierResponse;
33
- readonly kind: MethodKind.Unary;
34
- };
35
- /**
36
- * Update draft
37
- *
38
- * @generated from rpc Scailo.QCHubsService.DraftUpdate
39
- */
40
- readonly draftUpdate: {
41
- readonly name: "DraftUpdate";
42
- readonly I: typeof QCHubsServiceUpdateRequest;
43
- readonly O: typeof IdentifierResponse;
44
- readonly kind: MethodKind.Unary;
45
- };
46
- /**
47
- * Send for verification
48
- *
49
- * @generated from rpc Scailo.QCHubsService.SendForVerification
50
- */
51
- readonly sendForVerification: {
52
- readonly name: "SendForVerification";
53
- readonly I: typeof IdentifierUUIDWithUserComment;
54
- readonly O: typeof IdentifierResponse;
55
- readonly kind: MethodKind.Unary;
56
- };
57
- /**
58
- * Verify
59
- *
60
- * @generated from rpc Scailo.QCHubsService.Verify
61
- */
62
- readonly verify: {
63
- readonly name: "Verify";
64
- readonly I: typeof IdentifierUUIDWithUserComment;
65
- readonly O: typeof IdentifierResponse;
66
- readonly kind: MethodKind.Unary;
67
- };
68
- /**
69
- * Approve
70
- *
71
- * @generated from rpc Scailo.QCHubsService.Approve
72
- */
73
- readonly approve: {
74
- readonly name: "Approve";
75
- readonly I: typeof IdentifierUUIDWithUserComment;
76
- readonly O: typeof IdentifierResponse;
77
- readonly kind: MethodKind.Unary;
78
- };
79
- /**
80
- * Send For Revision
81
- *
82
- * @generated from rpc Scailo.QCHubsService.SendForRevision
83
- */
84
- readonly sendForRevision: {
85
- readonly name: "SendForRevision";
86
- readonly I: typeof IdentifierUUIDWithUserComment;
87
- readonly O: typeof IdentifierResponse;
88
- readonly kind: MethodKind.Unary;
89
- };
90
- /**
91
- * Update revision
92
- *
93
- * @generated from rpc Scailo.QCHubsService.RevisionUpdate
94
- */
95
- readonly revisionUpdate: {
96
- readonly name: "RevisionUpdate";
97
- readonly I: typeof QCHubsServiceUpdateRequest;
98
- readonly O: typeof IdentifierResponse;
99
- readonly kind: MethodKind.Unary;
100
- };
101
- /**
102
- * Halt
103
- *
104
- * @generated from rpc Scailo.QCHubsService.Halt
105
- */
106
- readonly halt: {
107
- readonly name: "Halt";
108
- readonly I: typeof IdentifierUUIDWithUserComment;
109
- readonly O: typeof IdentifierResponse;
110
- readonly kind: MethodKind.Unary;
111
- };
112
- /**
113
- * Discard
114
- *
115
- * @generated from rpc Scailo.QCHubsService.Discard
116
- */
117
- readonly discard: {
118
- readonly name: "Discard";
119
- readonly I: typeof IdentifierUUIDWithUserComment;
120
- readonly O: typeof IdentifierResponse;
121
- readonly kind: MethodKind.Unary;
122
- };
123
- /**
124
- * Restore
125
- *
126
- * @generated from rpc Scailo.QCHubsService.Restore
127
- */
128
- readonly restore: {
129
- readonly name: "Restore";
130
- readonly I: typeof IdentifierUUIDWithUserComment;
131
- readonly O: typeof IdentifierResponse;
132
- readonly kind: MethodKind.Unary;
133
- };
134
- /**
135
- * Add comment
136
- *
137
- * Send Email
138
- * rpc SendEmail (Identifier) returns (IdentifierResponse);
139
- *
140
- * @generated from rpc Scailo.QCHubsService.CommentAdd
141
- */
142
- readonly commentAdd: {
143
- readonly name: "CommentAdd";
144
- readonly I: typeof IdentifierUUIDWithUserComment;
145
- readonly O: typeof IdentifierResponse;
146
- readonly kind: MethodKind.Unary;
147
- };
148
- /**
149
- * View by ID
150
- *
151
- * @generated from rpc Scailo.QCHubsService.ViewByID
152
- */
153
- readonly viewByID: {
154
- readonly name: "ViewByID";
155
- readonly I: typeof Identifier;
156
- readonly O: typeof QCHub;
157
- readonly kind: MethodKind.Unary;
158
- };
159
- /**
160
- * View all
161
- *
162
- * @generated from rpc Scailo.QCHubsService.ViewAll
163
- */
164
- readonly viewAll: {
165
- readonly name: "ViewAll";
166
- readonly I: typeof ActiveStatus;
167
- readonly O: typeof QCHubsList;
168
- readonly kind: MethodKind.Unary;
169
- };
170
- /**
171
- * View all with the given entity UUID
172
- *
173
- * @generated from rpc Scailo.QCHubsService.ViewAllForEntityUUID
174
- */
175
- readonly viewAllForEntityUUID: {
176
- readonly name: "ViewAllForEntityUUID";
177
- readonly I: typeof IdentifierUUID;
178
- readonly O: typeof QCHubsList;
179
- readonly kind: MethodKind.Unary;
180
- };
181
- /**
182
- * View with pagination
183
- *
184
- * @generated from rpc Scailo.QCHubsService.ViewWithPagination
185
- */
186
- readonly viewWithPagination: {
187
- readonly name: "ViewWithPagination";
188
- readonly I: typeof QCHubsServicePaginationReq;
189
- readonly O: typeof QCHubsServicePaginationResponse;
190
- readonly kind: MethodKind.Unary;
191
- };
192
- /**
193
- * View all that match the given search key
194
- *
195
- * @generated from rpc Scailo.QCHubsService.SearchAll
196
- */
197
- readonly searchAll: {
198
- readonly name: "SearchAll";
199
- readonly I: typeof QCHubsServiceSearchAllReq;
200
- readonly O: typeof QCHubsList;
201
- readonly kind: MethodKind.Unary;
202
- };
203
- /**
204
- * View all that match the given filter criteria
205
- *
206
- * @generated from rpc Scailo.QCHubsService.Filter
207
- */
208
- readonly filter: {
209
- readonly name: "Filter";
210
- readonly I: typeof QCHubsServiceFilterReq;
211
- readonly O: typeof QCHubsList;
212
- readonly kind: MethodKind.Unary;
213
- };
214
- /**
215
- * Count in status
216
- *
217
- * @generated from rpc Scailo.QCHubsService.CountInStatus
218
- */
219
- readonly countInStatus: {
220
- readonly name: "CountInStatus";
221
- readonly I: typeof CountInSLCStatusRequest;
222
- readonly O: typeof CountResponse;
223
- readonly kind: MethodKind.Unary;
224
- };
225
- /**
226
- * Count all that match the given criteria
227
- *
228
- * @generated from rpc Scailo.QCHubsService.Count
229
- */
230
- readonly count: {
231
- readonly name: "Count";
232
- readonly I: typeof QCHubsServiceCountReq;
233
- readonly O: typeof CountResponse;
234
- readonly kind: MethodKind.Unary;
235
- };
236
- };
237
- };
238
- //# sourceMappingURL=qc_hubs.scailo_connect.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"qc_hubs.scailo_connect.d.ts","sourceRoot":"","sources":["../../../../src/qc_hubs.scailo_connect.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,KAAK,EAAE,UAAU,EAAE,qBAAqB,EAAE,0BAA0B,EAAE,sBAAsB,EAAE,0BAA0B,EAAE,+BAA+B,EAAE,yBAAyB,EAAE,0BAA0B,EAAE,MAAM,wBAAwB,CAAC;AAC1P,OAAO,EAAE,YAAY,EAAE,uBAAuB,EAAE,aAAa,EAAE,UAAU,EAAE,kBAAkB,EAAE,cAAc,EAAE,6BAA6B,EAAE,MAAM,qBAAqB,CAAC;AAC1K,OAAO,EAAE,UAAU,EAAE,MAAM,oBAAoB,CAAC;AAEhD;;;;;GAKG;AACH,eAAO,MAAM,aAAa;;;QAGtB;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;;;;WAOG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;QAOH;;;;WAIG;;;;;;;;CAQG,CAAC"}