@abtnode/schema 1.6.7 → 1.6.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 (3) hide show
  1. package/lib/index.js +682 -676
  2. package/lib/schema.graphqls +811 -804
  3. package/package.json +2 -2
package/lib/index.js CHANGED
@@ -12,1260 +12,1266 @@ scalar Int64
12
12
  scalar Uint32
13
13
 
14
14
  input BlockletRegistryInput {
15
- name: String
16
- description: String
17
- url: String
18
- logoUrl: String
19
- maintainer: String
20
- cdnUrl: String
21
- selected: Boolean
22
- protected: Boolean
23
- id: String
15
+ name: String
16
+ description: String
17
+ url: String
18
+ logoUrl: String
19
+ maintainer: String
20
+ cdnUrl: String
21
+ selected: Boolean
22
+ protected: Boolean
23
+ id: String
24
24
  }
25
25
 
26
26
  input BlockletServiceInput {
27
- name: String
28
- description: String
29
- version: String
30
- config: String
31
- schema: String
27
+ name: String
28
+ description: String
29
+ version: String
30
+ config: String
31
+ schema: String
32
32
  }
33
33
 
34
34
  input BlockletStateInterfaceInput {
35
- ruleId: String
36
- type: String
37
- name: String
38
- url: String
39
- authConfig: Any
35
+ ruleId: String
36
+ type: String
37
+ name: String
38
+ url: String
39
+ authConfig: Any
40
40
  }
41
41
 
42
42
  input ConfigEntryInput {
43
- key: String
44
- value: String
45
- required: Boolean
46
- description: String
47
- validation: String
48
- secure: Boolean
49
- custom: Boolean
43
+ key: String
44
+ value: String
45
+ required: Boolean
46
+ description: String
47
+ validation: String
48
+ secure: Boolean
49
+ custom: Boolean
50
50
  }
51
51
 
52
52
  input HashFileInput {
53
- file: String
54
- hash: String
53
+ file: String
54
+ hash: String
55
55
  }
56
56
 
57
57
  input IssuerInput {
58
- id: String
59
- name: String
60
- pk: String
58
+ id: String
59
+ name: String
60
+ pk: String
61
61
  }
62
62
 
63
63
  input MemberInfoInput {
64
- did: String
65
- pk: String
66
- role: String
67
- avatar: String
68
- fullName: String
69
- email: String
70
- approved: Boolean
71
- createdAt: String
72
- updatedAt: String
73
- locale: String
74
- passports: [PassportInput!]
75
- firstLoginAt: String
76
- lastLoginAt: String
77
- remark: String
64
+ did: String
65
+ pk: String
66
+ role: String
67
+ avatar: String
68
+ fullName: String
69
+ email: String
70
+ approved: Boolean
71
+ createdAt: String
72
+ updatedAt: String
73
+ locale: String
74
+ passports: [PassportInput!]
75
+ firstLoginAt: String
76
+ lastLoginAt: String
77
+ remark: String
78
78
  }
79
79
 
80
80
  input NodeInfoInput {
81
- name: String
82
- description: String
83
- autoUpgrade: Boolean
84
- enableWelcomePage: Boolean
85
- registerUrl: String
86
- webWalletUrl: String
87
- blockletRegistryList: [BlockletRegistryInput!]
88
- diskAlertThreshold: Uint32
81
+ name: String
82
+ description: String
83
+ autoUpgrade: Boolean
84
+ enableWelcomePage: Boolean
85
+ registerUrl: String
86
+ webWalletUrl: String
87
+ blockletRegistryList: [BlockletRegistryInput!]
88
+ diskAlertThreshold: Uint32
89
89
  }
90
90
 
91
91
  input PagingInput {
92
- total: Uint32
93
- pageSize: Uint32
94
- pageCount: Uint32
95
- page: Uint32
92
+ total: Uint32
93
+ pageSize: Uint32
94
+ pageCount: Uint32
95
+ page: Uint32
96
96
  }
97
97
 
98
98
  input PassportInput {
99
- id: String
100
- name: String
101
- title: String
102
- issuer: IssuerInput
103
- type: [String!]
104
- issuanceDate: String
105
- expirationDate: String
106
- status: String
107
- role: String
99
+ id: String
100
+ name: String
101
+ title: String
102
+ issuer: IssuerInput
103
+ type: [String!]
104
+ issuanceDate: String
105
+ expirationDate: String
106
+ status: String
107
+ role: String
108
108
  }
109
109
 
110
110
  input PermissionInput {
111
- name: String
112
- description: String
113
- isProtected: Boolean
111
+ name: String
112
+ description: String
113
+ isProtected: Boolean
114
114
  }
115
115
 
116
116
  input RequestAddDomainAliasInput {
117
- id: String
118
- domainAlias: String
117
+ id: String
118
+ domainAlias: String
119
119
  }
120
120
 
121
121
  input RequestAddLetsEcryptCertInput {
122
- domain: String
122
+ domain: String
123
123
  }
124
124
 
125
125
  input RequestAddNginxHttpsCertInput {
126
- name: String
127
- privateKey: String
128
- certificate: String
129
- public: Boolean
126
+ name: String
127
+ privateKey: String
128
+ certificate: String
129
+ public: Boolean
130
130
  }
131
131
 
132
132
  input RequestAddRoutingRuleInput {
133
- id: String
134
- rule: RoutingRuleInput
133
+ id: String
134
+ rule: RoutingRuleInput
135
135
  }
136
136
 
137
137
  input RequestAddRoutingSiteInput {
138
- domain: String
139
- type: String
140
- rules: [RoutingRuleInput!]
138
+ domain: String
139
+ type: String
140
+ rules: [RoutingRuleInput!]
141
141
  }
142
142
 
143
143
  input RequestBlockletInput {
144
- did: String
145
- registryUrl: String
146
- attachRuntimeInfo: Boolean
144
+ did: String
145
+ registryUrl: String
146
+ attachRuntimeInfo: Boolean
147
147
  }
148
148
 
149
149
  input RequestBlockletDiffInput {
150
- did: String
151
- hashFiles: [HashFileInput!]
150
+ did: String
151
+ hashFiles: [HashFileInput!]
152
152
  }
153
153
 
154
154
  input RequestBlockletMetaFromUrlInput {
155
- url: String
156
- checkPrice: Boolean
155
+ url: String
156
+ checkPrice: Boolean
157
157
  }
158
158
 
159
159
  input RequestChangeBlockletRegistryInput {
160
- url: String
160
+ url: String
161
161
  }
162
162
 
163
163
  input RequestCheckDomainsInput {
164
- domains: [String!]
164
+ domains: [String!]
165
165
  }
166
166
 
167
167
  input RequestConfigBlockletInput {
168
- did: String
169
- childDid: String
170
- configs: [ConfigEntryInput!]
168
+ did: String
169
+ childDid: String
170
+ configs: [ConfigEntryInput!]
171
171
  }
172
172
 
173
173
  input RequestConfigPassportIssuanceInput {
174
- teamDid: String
175
- enable: Boolean
174
+ teamDid: String
175
+ enable: Boolean
176
176
  }
177
177
 
178
178
  input RequestConfigTrustedPassportsInput {
179
- teamDid: String
180
- trustedPassports: [TrustedPassportInput!]
179
+ teamDid: String
180
+ trustedPassports: [TrustedPassportInput!]
181
181
  }
182
182
 
183
183
  input RequestCreateAccessKeyInput {
184
- remark: String
185
- passport: String
184
+ remark: String
185
+ passport: String
186
186
  }
187
187
 
188
188
  input RequestCreatePassportIssuanceInput {
189
- teamDid: String
190
- ownerDid: String
191
- name: String
189
+ teamDid: String
190
+ ownerDid: String
191
+ name: String
192
192
  }
193
193
 
194
194
  input RequestCreatePermissionInput {
195
- teamDid: String
196
- name: String
197
- description: String
195
+ teamDid: String
196
+ name: String
197
+ description: String
198
198
  }
199
199
 
200
200
  input RequestCreateRoleInput {
201
- teamDid: String
202
- name: String
203
- title: String
204
- description: String
205
- childName: String
206
- permissions: [String!]
201
+ teamDid: String
202
+ name: String
203
+ title: String
204
+ description: String
205
+ childName: String
206
+ permissions: [String!]
207
207
  }
208
208
 
209
209
  input RequestCreateWebHookInput {
210
- type: SenderType
211
- title: String
212
- description: String
213
- params: [WebHookParamInput!]
210
+ type: SenderType
211
+ title: String
212
+ description: String
213
+ params: [WebHookParamInput!]
214
214
  }
215
215
 
216
216
  input RequestDeleteAccessKeyInput {
217
- accessKeyId: String
217
+ accessKeyId: String
218
218
  }
219
219
 
220
220
  input RequestDeleteBlockletInput {
221
- did: String
222
- keepData: Boolean
221
+ did: String
222
+ keepData: Boolean
223
223
  }
224
224
 
225
225
  input RequestDeleteDomainAliasInput {
226
- id: String
227
- domainAlias: String
226
+ id: String
227
+ domainAlias: String
228
228
  }
229
229
 
230
230
  input RequestDeleteNginxHttpsCertInput {
231
- id: String
231
+ id: String
232
232
  }
233
233
 
234
234
  input RequestDeletePermissionInput {
235
- teamDid: String
236
- name: String
235
+ teamDid: String
236
+ name: String
237
237
  }
238
238
 
239
239
  input RequestDeleteRoleInput {
240
- teamDid: String
241
- name: String
240
+ teamDid: String
241
+ name: String
242
242
  }
243
243
 
244
244
  input RequestDeleteRoutingRuleInput {
245
- id: String
246
- ruleId: String
245
+ id: String
246
+ ruleId: String
247
247
  }
248
248
 
249
249
  input RequestDeleteRoutingSiteInput {
250
- id: String
250
+ id: String
251
251
  }
252
252
 
253
253
  input RequestDeleteTeamSessionInput {
254
- teamDid: String
255
- sessionId: String
254
+ teamDid: String
255
+ sessionId: String
256
256
  }
257
257
 
258
258
  input RequestDeleteWebHookInput {
259
- id: String
259
+ id: String
260
260
  }
261
261
 
262
262
  input RequestEndSessionInput {
263
- id: String
263
+ id: String
264
264
  }
265
265
 
266
266
  input RequestGetBlockletsInput {
267
- useCache: Boolean
267
+ useCache: Boolean
268
268
  }
269
269
 
270
270
  input RequestGetNotificationsInput {
271
- receiver: String
272
- sender: String
273
- read: Boolean
274
- paging: PagingInput
271
+ receiver: String
272
+ sender: String
273
+ read: Boolean
274
+ paging: PagingInput
275
275
  }
276
276
 
277
277
  input RequestGetPassportIssuancesInput {
278
- teamDid: String
279
- ownerDid: String
278
+ teamDid: String
279
+ ownerDid: String
280
280
  }
281
281
 
282
282
  input RequestGetRoutingSitesInput {
283
- snapshotHash: String
283
+ snapshotHash: String
284
284
  }
285
285
 
286
286
  input RequestGetRoutingSnapshotsInput {
287
- limit: Int32
287
+ limit: Int32
288
288
  }
289
289
 
290
290
  input RequestGetSessionInput {
291
- id: String
291
+ id: String
292
292
  }
293
293
 
294
294
  input RequestGetSnapshotSitesInput {
295
- hash: String
295
+ hash: String
296
296
  }
297
297
 
298
298
  input RequestGrantPermissionForRoleInput {
299
- teamDid: String
300
- roleName: String
301
- grantName: String
299
+ teamDid: String
300
+ roleName: String
301
+ grantName: String
302
302
  }
303
303
 
304
304
  input RequestHasPermissionInput {
305
- teamDid: String
306
- role: String
307
- permission: String
305
+ teamDid: String
306
+ role: String
307
+ permission: String
308
308
  }
309
309
 
310
310
  input RequestInstallFromVcInput {
311
- challenge: String
312
- vcPresentation: Any
311
+ challenge: String
312
+ vcPresentation: Any
313
313
  }
314
314
 
315
315
  input RequestLatestBlockletVersionInput {
316
- did: String
317
- version: String
316
+ did: String
317
+ version: String
318
318
  }
319
319
 
320
320
  input RequestListBlockletsInput {
321
- registryUrl: String
321
+ registryUrl: String
322
322
  }
323
323
 
324
324
  input RequestNodeRoutingInput {
325
- provider: String
326
- snapshotHash: String
327
- forceRepopulate: Boolean
325
+ provider: String
326
+ snapshotHash: String
327
+ forceRepopulate: Boolean
328
328
  }
329
329
 
330
330
  input RequestReadNotificationsInput {
331
- id: String
331
+ id: String
332
332
  }
333
333
 
334
334
  input RequestResetNodeInput {
335
- owner: Boolean
336
- blocklets: Boolean
337
- webhooks: Boolean
338
- certificates: Boolean
339
- accessKeys: Boolean
340
- blockletExtras: Boolean
341
- routingRules: Boolean
342
- users: Boolean
343
- invitations: Boolean
335
+ owner: Boolean
336
+ blocklets: Boolean
337
+ webhooks: Boolean
338
+ certificates: Boolean
339
+ accessKeys: Boolean
340
+ blockletExtras: Boolean
341
+ routingRules: Boolean
342
+ users: Boolean
343
+ invitations: Boolean
344
344
  }
345
345
 
346
346
  input RequestRevokePermissionFromRoleInput {
347
- teamDid: String
348
- roleName: String
349
- grantName: String
347
+ teamDid: String
348
+ roleName: String
349
+ grantName: String
350
350
  }
351
351
 
352
352
  input RequestRevokeUserPassportInput {
353
- teamDid: String
354
- userDid: String
355
- passportId: String
353
+ teamDid: String
354
+ userDid: String
355
+ passportId: String
356
356
  }
357
357
 
358
358
  input RequestSendMsgInput {
359
- webhookId: String
360
- message: String
359
+ webhookId: String
360
+ message: String
361
361
  }
362
362
 
363
363
  input RequestStartSessionInput {
364
- data: String
364
+ data: String
365
365
  }
366
366
 
367
367
  input RequestTakeRoutingSnapshotInput {
368
- dryRun: Boolean
369
- message: String
368
+ dryRun: Boolean
369
+ message: String
370
370
  }
371
371
 
372
372
  input RequestTeamPermissionInput {
373
- teamDid: String
374
- permission: PermissionInput
373
+ teamDid: String
374
+ permission: PermissionInput
375
375
  }
376
376
 
377
377
  input RequestTeamRoleInput {
378
- teamDid: String
379
- role: RoleInput
378
+ teamDid: String
379
+ role: RoleInput
380
380
  }
381
381
 
382
382
  input RequestTeamUserInput {
383
- teamDid: String
384
- user: MemberInfoInput
383
+ teamDid: String
384
+ user: MemberInfoInput
385
385
  }
386
386
 
387
387
  input RequestUpdateAccessKeyInput {
388
- accessKeyId: String
389
- remark: String
390
- passport: String
388
+ accessKeyId: String
389
+ remark: String
390
+ passport: String
391
391
  }
392
392
 
393
393
  input RequestUpdateChildBlockletsInput {
394
- updateId: String
394
+ updateId: String
395
395
  }
396
396
 
397
397
  input RequestUpdateNginxHttpsCertInput {
398
- id: String
399
- name: String
400
- public: Boolean
398
+ id: String
399
+ name: String
400
+ public: Boolean
401
401
  }
402
402
 
403
403
  input RequestUpdatePermissionsForRoleInput {
404
- teamDid: String
405
- roleName: String
406
- grantNames: [String!]
404
+ teamDid: String
405
+ roleName: String
406
+ grantNames: [String!]
407
407
  }
408
408
 
409
409
  input RequestUpdateRoutingRuleInput {
410
- id: String
411
- rule: RoutingRuleInput
410
+ id: String
411
+ rule: RoutingRuleInput
412
412
  }
413
413
 
414
414
  input RequestUpdateRoutingSiteInput {
415
- id: String
416
- corsAllowedOrigins: [String!]
417
- domain: String
415
+ id: String
416
+ corsAllowedOrigins: [String!]
417
+ domain: String
418
418
  }
419
419
 
420
420
  input RequestUpdateSessionInput {
421
- id: String
422
- data: String
421
+ id: String
422
+ data: String
423
423
  }
424
424
 
425
425
  input RequestUpgradeBlockletInput {
426
- did: String
427
- registryUrl: String
426
+ did: String
427
+ registryUrl: String
428
428
  }
429
429
 
430
430
  input RequestVersionedBlockletInput {
431
- did: String
432
- url: String
433
- file: Upload
434
- diffVersion: String
435
- deleteSet: [String!]
431
+ did: String
432
+ url: String
433
+ file: Upload
434
+ diffVersion: String
435
+ deleteSet: [String!]
436
436
  }
437
437
 
438
438
  input RequsetCreateInvitationInput {
439
- teamDid: String
440
- role: String
441
- remark: String
442
- interfaceName: String
439
+ teamDid: String
440
+ role: String
441
+ remark: String
442
+ interfaceName: String
443
443
  }
444
444
 
445
445
  input RequsetDeleteInvitationInput {
446
- teamDid: String
447
- inviteId: String
446
+ teamDid: String
447
+ inviteId: String
448
448
  }
449
449
 
450
450
  input RoleInput {
451
- name: String
452
- description: String
453
- grants: [String!]
454
- title: String
455
- isProtected: Boolean
451
+ name: String
452
+ description: String
453
+ grants: [String!]
454
+ title: String
455
+ isProtected: Boolean
456
456
  }
457
457
 
458
458
  input RoutingRuleInput {
459
- id: String
460
- from: RoutingRuleFromInput
461
- to: RoutingRuleToInput
462
- isProtected: Boolean
463
- interfaces: [BlockletStateInterfaceInput!]
464
- services: [BlockletServiceInput!]
459
+ id: String
460
+ from: RoutingRuleFromInput
461
+ to: RoutingRuleToInput
462
+ isProtected: Boolean
463
+ interfaces: [BlockletStateInterfaceInput!]
464
+ services: [BlockletServiceInput!]
465
465
  }
466
466
 
467
467
  input RoutingRuleFromInput {
468
- pathPrefix: String
469
- header: [RoutingRuleHeaderInput!]
468
+ pathPrefix: String
469
+ header: [RoutingRuleHeaderInput!]
470
470
  }
471
471
 
472
472
  input RoutingRuleHeaderInput {
473
- key: String
474
- value: String
475
- type: HeaderMatchType
473
+ key: String
474
+ value: String
475
+ type: HeaderMatchType
476
476
  }
477
477
 
478
478
  input RoutingRuleToInput {
479
- port: Uint32
480
- type: BackendServiceType
481
- did: String
482
- url: String
483
- redirectCode: Int32
484
- interfaceName: String
485
- realDid: String
479
+ port: Uint32
480
+ type: BackendServiceType
481
+ did: String
482
+ url: String
483
+ redirectCode: Int32
484
+ interfaceName: String
485
+ realDid: String
486
486
  }
487
487
 
488
488
  input TeamInput {
489
- teamDid: String
489
+ teamDid: String
490
490
  }
491
491
 
492
492
  input TrustedPassportInput {
493
- issuerDid: String
494
- mappings: [TrustedPassportMappingInput!]
493
+ issuerDid: String
494
+ mappings: [TrustedPassportMappingInput!]
495
495
  }
496
496
 
497
497
  input TrustedPassportMappingInput {
498
- from: TrustedPassportMappingFromInput
499
- to: TrustedPassportMappingToInput
498
+ from: TrustedPassportMappingFromInput
499
+ to: TrustedPassportMappingToInput
500
500
  }
501
501
 
502
502
  input TrustedPassportMappingFromInput {
503
- passport: String
503
+ passport: String
504
504
  }
505
505
 
506
506
  input TrustedPassportMappingToInput {
507
- role: String
507
+ role: String
508
508
  }
509
509
 
510
510
  input WebHookParamInput {
511
- name: String
512
- description: String
513
- required: Boolean
514
- defaultValue: String
515
- value: String
516
- type: String
511
+ name: String
512
+ description: String
513
+ required: Boolean
514
+ defaultValue: String
515
+ value: String
516
+ type: String
517
517
  }
518
518
 
519
519
  type AccessKey {
520
- accessKeyId: String
521
- remark: String
522
- passport: String
523
- createdAt: String
524
- lastUsedAt: String
520
+ accessKeyId: String
521
+ remark: String
522
+ passport: String
523
+ createdAt: String
524
+ lastUsedAt: String
525
525
  }
526
526
 
527
527
  type BlockletCapabilities {
528
- clusterMode: Boolean
528
+ clusterMode: Boolean
529
529
  }
530
530
 
531
531
  type BlockletDiff {
532
- hasBlocklet: Boolean
533
- version: String
534
- addSet: [String!]
535
- changeSet: [String!]
536
- deleteSet: [String!]
532
+ hasBlocklet: Boolean
533
+ version: String
534
+ addSet: [String!]
535
+ changeSet: [String!]
536
+ deleteSet: [String!]
537
537
  }
538
538
 
539
539
  type BlockletDist {
540
- tarball: String
541
- integrity: String
540
+ tarball: String
541
+ integrity: String
542
542
  }
543
543
 
544
544
  type BlockletEngine {
545
- name: String
546
- displayName: String
547
- description: String
548
- version: String
549
- available: Boolean
550
- visible: Boolean
545
+ name: String
546
+ displayName: String
547
+ description: String
548
+ version: String
549
+ available: Boolean
550
+ visible: Boolean
551
551
  }
552
552
 
553
553
  type BlockletMeta {
554
- did: String
555
- name: String
556
- version: String
557
- description: String
558
- interfaces: [BlockletMetaInterface!]
559
- author: BlockletMetaPerson
560
- main: String
561
- stats: BlockletStats
562
- homepage: String
563
- price: Float32
564
- path: String
565
- community: String
566
- documentation: String
567
- support: String
568
- screenshots: [String!]
569
- keywords: [String!]
570
- group: String
571
- logo: String
572
- title: String
573
- dist: BlockletDist
574
- maintainers: [BlockletMetaPerson!]
575
- contributors: [BlockletMetaPerson!]
576
- repository: BlockletRepository
577
- payment: BlockletPayment
578
- nftFactory: String
579
- lastPublishedAt: String
580
- capabilities: BlockletCapabilities
581
- isFree: Boolean
554
+ did: String
555
+ name: String
556
+ version: String
557
+ description: String
558
+ interfaces: [BlockletMetaInterface!]
559
+ author: BlockletMetaPerson
560
+ main: String
561
+ stats: BlockletStats
562
+ homepage: String
563
+ price: Float32
564
+ path: String
565
+ community: String
566
+ documentation: String
567
+ support: String
568
+ screenshots: [String!]
569
+ keywords: [String!]
570
+ group: String
571
+ logo: String
572
+ title: String
573
+ dist: BlockletDist
574
+ maintainers: [BlockletMetaPerson!]
575
+ contributors: [BlockletMetaPerson!]
576
+ repository: BlockletRepository
577
+ payment: BlockletPayment
578
+ nftFactory: String
579
+ lastPublishedAt: String
580
+ capabilities: BlockletCapabilities
581
+ isFree: Boolean
582
582
  }
583
583
 
584
584
  type BlockletMetaInterface {
585
- type: String
586
- name: String
587
- path: String
588
- prefix: String
589
- protocol: String
590
- port: Any
591
- services: [BlockletMetaService!]
585
+ type: String
586
+ name: String
587
+ path: String
588
+ prefix: String
589
+ protocol: String
590
+ port: Any
591
+ services: [BlockletMetaService!]
592
592
  }
593
593
 
594
594
  type BlockletMetaPerson {
595
- name: String
596
- email: String
597
- url: String
595
+ name: String
596
+ email: String
597
+ url: String
598
598
  }
599
599
 
600
600
  type BlockletMetaService {
601
- name: String
602
- config: Any
601
+ name: String
602
+ config: Any
603
603
  }
604
604
 
605
605
  type BlockletPayment {
606
- price: [BlockletPaymentPrice!]
607
- share: [BlockletPaymentShare!]
606
+ price: [BlockletPaymentPrice!]
607
+ share: [BlockletPaymentShare!]
608
608
  }
609
609
 
610
610
  type BlockletPaymentPrice {
611
- address: String
612
- value: String
613
- symbol: String
611
+ address: String
612
+ value: String
613
+ symbol: String
614
614
  }
615
615
 
616
616
  type BlockletPaymentShare {
617
- address: String
618
- name: String
619
- value: String
617
+ address: String
618
+ name: String
619
+ value: String
620
620
  }
621
621
 
622
622
  type BlockletPreUpdateInfo {
623
- updateId: String
624
- updateList: [BlockletMeta!]
623
+ updateId: String
624
+ updateList: [BlockletMeta!]
625
625
  }
626
626
 
627
627
  type BlockletRegistry {
628
- name: String
629
- description: String
630
- url: String
631
- logoUrl: String
632
- maintainer: String
633
- cdnUrl: String
634
- selected: Boolean
635
- protected: Boolean
636
- id: String
628
+ name: String
629
+ description: String
630
+ url: String
631
+ logoUrl: String
632
+ maintainer: String
633
+ cdnUrl: String
634
+ selected: Boolean
635
+ protected: Boolean
636
+ id: String
637
637
  }
638
638
 
639
639
  type BlockletRepository {
640
- type: String
641
- url: String
640
+ type: String
641
+ url: String
642
642
  }
643
643
 
644
644
  type BlockletService {
645
- name: String
646
- description: String
647
- version: String
648
- config: String
649
- schema: String
645
+ name: String
646
+ description: String
647
+ version: String
648
+ config: String
649
+ schema: String
650
650
  }
651
651
 
652
652
  type BlockletState {
653
- meta: BlockletMeta
654
- status: BlockletStatus
655
- createdAt: String
656
- installedAt: String
657
- startedAt: String
658
- pausedAt: String
659
- stoppedAt: String
660
- environments: [ConfigEntry!]
661
- configs: [ConfigEntry!]
662
- diskInfo: DiskInfo
663
- runtimeInfo: RuntimeInfo
664
- source: BlockletSource
665
- deployedFrom: String
666
- port: Float32
667
- interfaces: [BlockletStateInterface!]
668
- engine: BlockletEngine
669
- mode: String
670
- ports: Any
671
- children: [BlockletState!]
672
- trustedPassports: [TrustedPassport!]
673
- enablePassportIssuance: Boolean
653
+ meta: BlockletMeta
654
+ status: BlockletStatus
655
+ createdAt: String
656
+ installedAt: String
657
+ startedAt: String
658
+ pausedAt: String
659
+ stoppedAt: String
660
+ environments: [ConfigEntry!]
661
+ configs: [ConfigEntry!]
662
+ diskInfo: DiskInfo
663
+ runtimeInfo: RuntimeInfo
664
+ source: BlockletSource
665
+ deployedFrom: String
666
+ port: Float32
667
+ interfaces: [BlockletStateInterface!]
668
+ engine: BlockletEngine
669
+ mode: String
670
+ ports: Any
671
+ children: [BlockletState!]
672
+ trustedPassports: [TrustedPassport!]
673
+ enablePassportIssuance: Boolean
674
674
  }
675
675
 
676
676
  type BlockletStateInterface {
677
- ruleId: String
678
- type: String
679
- name: String
680
- url: String
681
- authConfig: Any
677
+ ruleId: String
678
+ type: String
679
+ name: String
680
+ url: String
681
+ authConfig: Any
682
682
  }
683
683
 
684
684
  type BlockletStats {
685
- downloads: Float32
686
- star: Float32
687
- purchases: Float32
685
+ downloads: Float32
686
+ star: Float32
687
+ purchases: Float32
688
688
  }
689
689
 
690
690
  type BooleanResponse {
691
- code: StatusCode
692
- result: Boolean
691
+ code: StatusCode
692
+ result: Boolean
693
693
  }
694
694
 
695
695
  type Certificate {
696
- name: String
697
- domain: String
698
- validFrom: Int64
699
- validTo: Int64
700
- issuer: CertificateIssuer
701
- sans: [String!]
702
- id: String
703
- fingerprintAlg: String
704
- fingerprint: String
705
- validityPeriod: Int64
706
- matchedSites: [MatchedSites!]
707
- createdAt: String
708
- updatedAt: String
709
- public: Boolean
710
- isProtected: Boolean
711
- source: String
712
- status: String
696
+ name: String
697
+ domain: String
698
+ id: String
699
+ meta: CertificateMeta
700
+ matchedSites: [MatchedSites!]
701
+ createdAt: String
702
+ updatedAt: String
703
+ public: Boolean
704
+ isProtected: Boolean
705
+ source: String
706
+ status: String
713
707
  }
714
708
 
715
709
  type CertificateIssuer {
716
- countryName: String
717
- organizationName: String
718
- commonName: String
710
+ countryName: String
711
+ organizationName: String
712
+ commonName: String
713
+ }
714
+
715
+ type CertificateMeta {
716
+ issuer: CertificateIssuer
717
+ sans: [String!]
718
+ validFrom: Int64
719
+ validTo: Int64
720
+ fingerprintAlg: String
721
+ fingerprint: String
722
+ validityPeriod: Int64
719
723
  }
720
724
 
721
725
  type ConfigEntry {
722
- key: String
723
- value: String
724
- required: Boolean
725
- description: String
726
- validation: String
727
- secure: Boolean
728
- custom: Boolean
726
+ key: String
727
+ value: String
728
+ required: Boolean
729
+ description: String
730
+ validation: String
731
+ secure: Boolean
732
+ custom: Boolean
729
733
  }
730
734
 
731
735
  type CreateAccessKey {
732
- accessKeyId: String
733
- accessKeySecret: String
734
- remark: String
735
- passport: String
736
- createdAt: String
737
- lastUsedAt: String
736
+ accessKeyId: String
737
+ accessKeySecret: String
738
+ remark: String
739
+ passport: String
740
+ createdAt: String
741
+ lastUsedAt: String
738
742
  }
739
743
 
740
744
  type DiskInfo {
741
- app: Float32
742
- data: Float32
743
- log: Float32
744
- cache: Float32
745
- blocklets: Float32
745
+ app: Float32
746
+ data: Float32
747
+ log: Float32
748
+ cache: Float32
749
+ blocklets: Float32
746
750
  }
747
751
 
748
752
  type GeneralResponse {
749
- code: StatusCode
753
+ code: StatusCode
750
754
  }
751
755
 
752
756
  type IPInfo {
753
- internalV4: String
754
- externalV4: String
755
- internalV6: String
756
- externalV6: String
757
+ internalV4: String
758
+ externalV4: String
759
+ internalV6: String
760
+ externalV6: String
757
761
  }
758
762
 
759
763
  type InviteInfo {
760
- inviteId: String
761
- role: String
762
- remark: String
763
- expireDate: String
764
- inviter: MemberInfo
765
- teamDid: String
766
- interfaceName: String
764
+ inviteId: String
765
+ role: String
766
+ remark: String
767
+ expireDate: String
768
+ inviter: MemberInfo
769
+ teamDid: String
770
+ interfaceName: String
767
771
  }
768
772
 
769
773
  type Issuer {
770
- id: String
771
- name: String
772
- pk: String
774
+ id: String
775
+ name: String
776
+ pk: String
773
777
  }
774
778
 
775
779
  type LatestBlockletVersion {
776
- did: String
777
- version: String
778
- registryUrl: String
780
+ did: String
781
+ version: String
782
+ registryUrl: String
779
783
  }
780
784
 
781
785
  type LauncherInfo {
782
- did: String
783
- type: String
784
- cloudService: String
785
- url: String
786
+ did: String
787
+ type: String
788
+ cloudService: String
789
+ url: String
786
790
  }
787
791
 
788
792
  type MatchedSites {
789
- id: String
790
- domain: String
793
+ id: String
794
+ domain: String
791
795
  }
792
796
 
793
797
  type MemberInfo {
794
- did: String
795
- pk: String
796
- role: String
797
- avatar: String
798
- fullName: String
799
- email: String
800
- approved: Boolean
801
- createdAt: String
802
- updatedAt: String
803
- locale: String
804
- passports: [Passport!]
805
- firstLoginAt: String
806
- lastLoginAt: String
807
- remark: String
798
+ did: String
799
+ pk: String
800
+ role: String
801
+ avatar: String
802
+ fullName: String
803
+ email: String
804
+ approved: Boolean
805
+ createdAt: String
806
+ updatedAt: String
807
+ locale: String
808
+ passports: [Passport!]
809
+ firstLoginAt: String
810
+ lastLoginAt: String
811
+ remark: String
808
812
  }
809
813
 
810
814
  type NodeEnvInfo {
811
- ip: IPInfo
812
- os: String
813
- location: String
814
- docker: Boolean
815
- image: Boolean
816
- blockletEngines: [BlockletEngine!]
817
- gitpod: Boolean
818
- disk: DiskInfo
815
+ ip: IPInfo
816
+ os: String
817
+ location: String
818
+ docker: Boolean
819
+ image: Boolean
820
+ blockletEngines: [BlockletEngine!]
821
+ gitpod: Boolean
822
+ disk: DiskInfo
819
823
  }
820
824
 
821
825
  type NodeRouting {
822
- provider: String
823
- snapshotHash: String
824
- adminPath: String
826
+ provider: String
827
+ snapshotHash: String
828
+ adminPath: String
825
829
  }
826
830
 
827
831
  type NodeState {
828
- did: String
829
- pk: String
830
- version: String
831
- name: String
832
- description: String
833
- port: String
834
- initialized: Boolean
835
- nodeOwner: WalletInfo
836
- createdAt: String
837
- startedAt: String
838
- initializedAt: String
839
- mode: String
840
- routing: NodeRouting
841
- members: [MemberInfo!]
842
- environments: [ConfigEntry!]
843
- uptime: Float32
844
- autoUpgrade: Boolean
845
- nextVersion: String
846
- upgradeSessionId: String
847
- registerUrl: String
848
- enableWelcomePage: Boolean
849
- webWalletUrl: String
850
- blockletRegistryList: [BlockletRegistry!]
851
- ownerNft: OwnerNft
852
- diskAlertThreshold: Uint32
853
- trustedPassports: [TrustedPassport!]
854
- launcherInfo: LauncherInfo
855
- enablePassportIssuance: Boolean
832
+ did: String
833
+ pk: String
834
+ version: String
835
+ name: String
836
+ description: String
837
+ port: String
838
+ initialized: Boolean
839
+ nodeOwner: WalletInfo
840
+ createdAt: String
841
+ startedAt: String
842
+ initializedAt: String
843
+ mode: String
844
+ routing: NodeRouting
845
+ members: [MemberInfo!]
846
+ environments: [ConfigEntry!]
847
+ uptime: Float32
848
+ autoUpgrade: Boolean
849
+ nextVersion: String
850
+ upgradeSessionId: String
851
+ registerUrl: String
852
+ enableWelcomePage: Boolean
853
+ webWalletUrl: String
854
+ blockletRegistryList: [BlockletRegistry!]
855
+ ownerNft: OwnerNft
856
+ diskAlertThreshold: Uint32
857
+ trustedPassports: [TrustedPassport!]
858
+ launcherInfo: LauncherInfo
859
+ enablePassportIssuance: Boolean
860
+ didRegistry: String
861
+ didDomain: String
856
862
  }
857
863
 
858
864
  type Notification {
859
- sender: String
860
- receiver: String
861
- title: String
862
- description: String
863
- action: String
864
- entityType: String
865
- entityId: String
866
- read: Boolean
867
- createdAt: String
868
- updatedAt: String
869
- id: String
870
- severity: String
865
+ sender: String
866
+ receiver: String
867
+ title: String
868
+ description: String
869
+ action: String
870
+ entityType: String
871
+ entityId: String
872
+ read: Boolean
873
+ createdAt: String
874
+ updatedAt: String
875
+ id: String
876
+ severity: String
871
877
  }
872
878
 
873
879
  type OwnerNft {
874
- holder: String
875
- issuer: String
880
+ holder: String
881
+ issuer: String
876
882
  }
877
883
 
878
884
  type Paging {
879
- total: Uint32
880
- pageSize: Uint32
881
- pageCount: Uint32
882
- page: Uint32
885
+ total: Uint32
886
+ pageSize: Uint32
887
+ pageCount: Uint32
888
+ page: Uint32
883
889
  }
884
890
 
885
891
  type Passport {
886
- id: String
887
- name: String
888
- title: String
889
- issuer: Issuer
890
- type: [String!]
891
- issuanceDate: String
892
- expirationDate: String
893
- status: String
894
- role: String
892
+ id: String
893
+ name: String
894
+ title: String
895
+ issuer: Issuer
896
+ type: [String!]
897
+ issuanceDate: String
898
+ expirationDate: String
899
+ status: String
900
+ role: String
895
901
  }
896
902
 
897
903
  type PassportIssuanceInfo {
898
- id: String
899
- name: String
900
- title: String
901
- expireDate: String
902
- teamDid: String
903
- ownerDid: String
904
+ id: String
905
+ name: String
906
+ title: String
907
+ expireDate: String
908
+ teamDid: String
909
+ ownerDid: String
904
910
  }
905
911
 
906
912
  type Permission {
907
- name: String
908
- description: String
909
- isProtected: Boolean
913
+ name: String
914
+ description: String
915
+ isProtected: Boolean
910
916
  }
911
917
 
912
918
  type ResponseAccessKeys {
913
- code: StatusCode
914
- list: [AccessKey!]
919
+ code: StatusCode
920
+ list: [AccessKey!]
915
921
  }
916
922
 
917
923
  type ResponseAddLetsEcryptCert {
918
- code: StatusCode
924
+ code: StatusCode
919
925
  }
920
926
 
921
927
  type ResponseAddNginxHttpsCert {
922
- code: StatusCode
928
+ code: StatusCode
923
929
  }
924
930
 
925
931
  type ResponseBlocklet {
926
- code: StatusCode
927
- blocklet: BlockletState
932
+ code: StatusCode
933
+ blocklet: BlockletState
928
934
  }
929
935
 
930
936
  type ResponseBlockletDiff {
931
- code: StatusCode
932
- blockletDiff: BlockletDiff
937
+ code: StatusCode
938
+ blockletDiff: BlockletDiff
933
939
  }
934
940
 
935
941
  type ResponseBlockletMeta {
936
- code: StatusCode
937
- meta: Any
942
+ code: StatusCode
943
+ meta: Any
938
944
  }
939
945
 
940
946
  type ResponseBlockletMetaFromUrl {
941
- code: StatusCode
942
- meta: BlockletMeta
947
+ code: StatusCode
948
+ meta: BlockletMeta
943
949
  }
944
950
 
945
951
  type ResponseCheckChildBlockletsForUpdates {
946
- code: StatusCode
947
- preUpdateInfo: BlockletPreUpdateInfo
952
+ code: StatusCode
953
+ preUpdateInfo: BlockletPreUpdateInfo
948
954
  }
949
955
 
950
956
  type ResponseCheckDomains {
951
- code: StatusCode
957
+ code: StatusCode
952
958
  }
953
959
 
954
960
  type ResponseCheckNodeVersion {
955
- code: StatusCode
956
- version: String
961
+ code: StatusCode
962
+ version: String
957
963
  }
958
964
 
959
965
  type ResponseConfigBlocklet {
960
- code: StatusCode
961
- blocklet: BlockletState
966
+ code: StatusCode
967
+ blocklet: BlockletState
962
968
  }
963
969
 
964
970
  type ResponseCreateAccessKey {
965
- code: StatusCode
966
- data: CreateAccessKey
971
+ code: StatusCode
972
+ data: CreateAccessKey
967
973
  }
968
974
 
969
975
  type ResponseCreateInvitation {
970
- code: StatusCode
971
- inviteInfo: InviteInfo
976
+ code: StatusCode
977
+ inviteInfo: InviteInfo
972
978
  }
973
979
 
974
980
  type ResponseCreatePassportIssuance {
975
- code: StatusCode
976
- info: PassportIssuanceInfo
981
+ code: StatusCode
982
+ info: PassportIssuanceInfo
977
983
  }
978
984
 
979
985
  type ResponseCreateWebHook {
980
- code: StatusCode
981
- webhook: WebHookSender
986
+ code: StatusCode
987
+ webhook: WebHookSender
982
988
  }
983
989
 
984
990
  type ResponseDeleteAccessKey {
985
- code: StatusCode
991
+ code: StatusCode
986
992
  }
987
993
 
988
994
  type ResponseDeleteNginxHttpsCert {
989
- code: StatusCode
995
+ code: StatusCode
990
996
  }
991
997
 
992
998
  type ResponseDeleteWebHook {
993
- code: StatusCode
999
+ code: StatusCode
994
1000
  }
995
1001
 
996
1002
  type ResponseGetBlocklets {
997
- code: StatusCode
998
- blocklets: [BlockletState!]
1003
+ code: StatusCode
1004
+ blocklets: [BlockletState!]
999
1005
  }
1000
1006
 
1001
1007
  type ResponseGetCertificates {
1002
- code: StatusCode
1003
- certificates: [Certificate!]
1008
+ code: StatusCode
1009
+ certificates: [Certificate!]
1004
1010
  }
1005
1011
 
1006
1012
  type ResponseGetInvitations {
1007
- code: StatusCode
1008
- invitations: [InviteInfo!]
1013
+ code: StatusCode
1014
+ invitations: [InviteInfo!]
1009
1015
  }
1010
1016
 
1011
1017
  type ResponseGetNodeEnv {
1012
- code: StatusCode
1013
- info: NodeEnvInfo
1018
+ code: StatusCode
1019
+ info: NodeEnvInfo
1014
1020
  }
1015
1021
 
1016
1022
  type ResponseGetNodeInfo {
1017
- code: StatusCode
1018
- info: NodeState
1023
+ code: StatusCode
1024
+ info: NodeState
1019
1025
  }
1020
1026
 
1021
1027
  type ResponseGetNotifications {
1022
- code: StatusCode
1023
- list: [Notification!]
1024
- paging: Paging
1028
+ code: StatusCode
1029
+ list: [Notification!]
1030
+ paging: Paging
1025
1031
  }
1026
1032
 
1027
1033
  type ResponseGetPassportIssuances {
1028
- code: StatusCode
1029
- list: [PassportIssuanceInfo!]
1034
+ code: StatusCode
1035
+ list: [PassportIssuanceInfo!]
1030
1036
  }
1031
1037
 
1032
1038
  type ResponseGetRoutingProviders {
1033
- code: StatusCode
1034
- providers: [RoutingProvider!]
1039
+ code: StatusCode
1040
+ providers: [RoutingProvider!]
1035
1041
  }
1036
1042
 
1037
1043
  type ResponseGetRoutingSites {
1038
- code: StatusCode
1039
- sites: [RoutingSite!]
1044
+ code: StatusCode
1045
+ sites: [RoutingSite!]
1040
1046
  }
1041
1047
 
1042
1048
  type ResponseGetRoutingSnapshots {
1043
- code: StatusCode
1044
- snapshots: [RoutingSnapshot!]
1049
+ code: StatusCode
1050
+ snapshots: [RoutingSnapshot!]
1045
1051
  }
1046
1052
 
1047
1053
  type ResponseGetServices {
1048
- code: StatusCode
1049
- services: [BlockletService!]
1054
+ code: StatusCode
1055
+ services: [BlockletService!]
1050
1056
  }
1051
1057
 
1052
1058
  type ResponseGetSession {
1053
- code: StatusCode
1054
- session: Any
1059
+ code: StatusCode
1060
+ session: Any
1055
1061
  }
1056
1062
 
1057
1063
  type ResponseGetSnapshotSites {
1058
- code: StatusCode
1059
- sites: [RoutingSite!]
1064
+ code: StatusCode
1065
+ sites: [RoutingSite!]
1060
1066
  }
1061
1067
 
1062
1068
  type ResponseInstallFromVc {
1063
- code: StatusCode
1064
- blocklet: BlockletState
1069
+ code: StatusCode
1070
+ blocklet: BlockletState
1065
1071
  }
1066
1072
 
1067
1073
  type ResponseLatestBlockletVersion {
1068
- code: StatusCode
1069
- data: LatestBlockletVersion
1074
+ code: StatusCode
1075
+ data: LatestBlockletVersion
1070
1076
  }
1071
1077
 
1072
1078
  type ResponseListBlocklets {
1073
- code: StatusCode
1074
- blocklets: [BlockletMeta!]
1079
+ code: StatusCode
1080
+ blocklets: [BlockletMeta!]
1075
1081
  }
1076
1082
 
1077
1083
  type ResponsePermission {
1078
- code: StatusCode
1079
- permission: Permission
1084
+ code: StatusCode
1085
+ permission: Permission
1080
1086
  }
1081
1087
 
1082
1088
  type ResponsePermissions {
1083
- code: StatusCode
1084
- permissions: [Permission!]
1089
+ code: StatusCode
1090
+ permissions: [Permission!]
1085
1091
  }
1086
1092
 
1087
1093
  type ResponseReadNotifications {
1088
- code: StatusCode
1089
- numAffected: Int32
1094
+ code: StatusCode
1095
+ numAffected: Int32
1090
1096
  }
1091
1097
 
1092
1098
  type ResponseResetNode {
1093
- code: StatusCode
1099
+ code: StatusCode
1094
1100
  }
1095
1101
 
1096
1102
  type ResponseRole {
1097
- code: StatusCode
1098
- role: Role
1103
+ code: StatusCode
1104
+ role: Role
1099
1105
  }
1100
1106
 
1101
1107
  type ResponseRoles {
1102
- code: StatusCode
1103
- roles: [Role!]
1108
+ code: StatusCode
1109
+ roles: [Role!]
1104
1110
  }
1105
1111
 
1106
1112
  type ResponseRoutingSite {
1107
- code: StatusCode
1108
- site: RoutingSite
1113
+ code: StatusCode
1114
+ site: RoutingSite
1109
1115
  }
1110
1116
 
1111
1117
  type ResponseSendMsg {
1112
- code: StatusCode
1118
+ code: StatusCode
1113
1119
  }
1114
1120
 
1115
1121
  type ResponseSenderList {
1116
- code: StatusCode
1117
- senders: [WebHookSender!]
1122
+ code: StatusCode
1123
+ senders: [WebHookSender!]
1118
1124
  }
1119
1125
 
1120
1126
  type ResponseTakeRoutingSnapshot {
1121
- code: StatusCode
1122
- hash: String
1127
+ code: StatusCode
1128
+ hash: String
1123
1129
  }
1124
1130
 
1125
1131
  type ResponseUpdateAccessKey {
1126
- code: StatusCode
1127
- data: AccessKey
1132
+ code: StatusCode
1133
+ data: AccessKey
1128
1134
  }
1129
1135
 
1130
1136
  type ResponseUpdateNginxHttpsCert {
1131
- code: StatusCode
1137
+ code: StatusCode
1132
1138
  }
1133
1139
 
1134
1140
  type ResponseUpgradeNodeVersion {
1135
- code: StatusCode
1136
- sessionId: String
1141
+ code: StatusCode
1142
+ sessionId: String
1137
1143
  }
1138
1144
 
1139
1145
  type ResponseUser {
1140
- code: StatusCode
1141
- user: MemberInfo
1146
+ code: StatusCode
1147
+ user: MemberInfo
1142
1148
  }
1143
1149
 
1144
1150
  type ResponseUsers {
1145
- code: StatusCode
1146
- users: [MemberInfo!]
1151
+ code: StatusCode
1152
+ users: [MemberInfo!]
1147
1153
  }
1148
1154
 
1149
1155
  type ResponseWebHooks {
1150
- code: StatusCode
1151
- webhooks: [WebHookRecord!]
1156
+ code: StatusCode
1157
+ webhooks: [WebHookRecord!]
1152
1158
  }
1153
1159
 
1154
1160
  type Role {
1155
- name: String
1156
- description: String
1157
- grants: [String!]
1158
- title: String
1159
- isProtected: Boolean
1161
+ name: String
1162
+ description: String
1163
+ grants: [String!]
1164
+ title: String
1165
+ isProtected: Boolean
1160
1166
  }
1161
1167
 
1162
1168
  type RoutingProvider {
1163
- name: String
1164
- description: String
1165
- running: Boolean
1166
- available: Boolean
1167
- error: String
1169
+ name: String
1170
+ description: String
1171
+ running: Boolean
1172
+ available: Boolean
1173
+ error: String
1168
1174
  }
1169
1175
 
1170
1176
  type RoutingRule {
1171
- id: String
1172
- from: RoutingRuleFrom
1173
- to: RoutingRuleTo
1174
- isProtected: Boolean
1175
- interfaces: [BlockletStateInterface!]
1176
- services: [BlockletService!]
1177
+ id: String
1178
+ from: RoutingRuleFrom
1179
+ to: RoutingRuleTo
1180
+ isProtected: Boolean
1181
+ interfaces: [BlockletStateInterface!]
1182
+ services: [BlockletService!]
1177
1183
  }
1178
1184
 
1179
1185
  type RoutingRuleFrom {
1180
- pathPrefix: String
1181
- header: [RoutingRuleHeader!]
1186
+ pathPrefix: String
1187
+ header: [RoutingRuleHeader!]
1182
1188
  }
1183
1189
 
1184
1190
  type RoutingRuleHeader {
1185
- key: String
1186
- value: String
1187
- type: HeaderMatchType
1191
+ key: String
1192
+ value: String
1193
+ type: HeaderMatchType
1188
1194
  }
1189
1195
 
1190
1196
  type RoutingRuleTo {
1191
- port: Uint32
1192
- type: BackendServiceType
1193
- did: String
1194
- url: String
1195
- redirectCode: Int32
1196
- interfaceName: String
1197
- realDid: String
1197
+ port: Uint32
1198
+ type: BackendServiceType
1199
+ did: String
1200
+ url: String
1201
+ redirectCode: Int32
1202
+ interfaceName: String
1203
+ realDid: String
1198
1204
  }
1199
1205
 
1200
1206
  type RoutingSite {
1201
- id: String
1202
- domain: String
1203
- domainAliases: [Any!]
1204
- rules: [RoutingRule!]
1205
- isProtected: Boolean
1206
- corsAllowedOrigins: [String!]
1207
+ id: String
1208
+ domain: String
1209
+ domainAliases: [Any!]
1210
+ rules: [RoutingRule!]
1211
+ isProtected: Boolean
1212
+ corsAllowedOrigins: [String!]
1207
1213
  }
1208
1214
 
1209
1215
  type RoutingSnapshot {
1210
- hash: String
1211
- tree: String
1212
- message: String
1213
- author: String
1214
- createdAt: String
1216
+ hash: String
1217
+ tree: String
1218
+ message: String
1219
+ author: String
1220
+ createdAt: String
1215
1221
  }
1216
1222
 
1217
1223
  type RuntimeInfo {
1218
- pid: String
1219
- port: String
1220
- uptime: String
1221
- memoryUsage: Float32
1222
- cpuUsage: Float32
1224
+ pid: String
1225
+ port: String
1226
+ uptime: String
1227
+ memoryUsage: Float32
1228
+ cpuUsage: Float32
1223
1229
  }
1224
1230
 
1225
1231
  type TrustedPassport {
1226
- issuerDid: String
1227
- mappings: [TrustedPassportMapping!]
1232
+ issuerDid: String
1233
+ mappings: [TrustedPassportMapping!]
1228
1234
  }
1229
1235
 
1230
1236
  type TrustedPassportMapping {
1231
- from: TrustedPassportMappingFrom
1232
- to: TrustedPassportMappingTo
1237
+ from: TrustedPassportMappingFrom
1238
+ to: TrustedPassportMappingTo
1233
1239
  }
1234
1240
 
1235
1241
  type TrustedPassportMappingFrom {
1236
- passport: String
1242
+ passport: String
1237
1243
  }
1238
1244
 
1239
1245
  type TrustedPassportMappingTo {
1240
- role: String
1246
+ role: String
1241
1247
  }
1242
1248
 
1243
1249
  type WalletInfo {
1244
- did: String
1245
- pk: String
1250
+ did: String
1251
+ pk: String
1246
1252
  }
1247
1253
 
1248
1254
  type WebHookParam {
1249
- name: String
1250
- description: String
1251
- required: Boolean
1252
- defaultValue: String
1253
- value: String
1254
- type: String
1255
+ name: String
1256
+ description: String
1257
+ required: Boolean
1258
+ defaultValue: String
1259
+ value: String
1260
+ type: String
1255
1261
  }
1256
1262
 
1257
1263
  type WebHookRecord {
1258
- type: SenderType
1259
- id: String
1260
- params: [WebHookParam!]
1261
- createdAt: String
1264
+ type: SenderType
1265
+ id: String
1266
+ params: [WebHookParam!]
1267
+ createdAt: String
1262
1268
  }
1263
1269
 
1264
1270
  type WebHookSender {
1265
- type: SenderType
1266
- title: String
1267
- description: String
1268
- params: [WebHookParam!]
1271
+ type: SenderType
1272
+ title: String
1273
+ description: String
1274
+ params: [WebHookParam!]
1269
1275
  }
1270
1276
 
1271
1277
  enum BackendServiceType {
@@ -1420,4 +1426,4 @@ type Query {
1420
1426
  getUser(input: RequestTeamUserInput): ResponseUser
1421
1427
  getPermissionsByRole(input: RequestTeamRoleInput): ResponsePermissions
1422
1428
  getPassportIssuances(input: RequestGetPassportIssuancesInput): ResponseGetPassportIssuances
1423
- }`;
1429
+ }`;