stigg-api-client 2.334.0 → 2.341.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.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/stigg/generated/schema.json +453 -1
- data/lib/stigg/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c01580ea4540262c320b968fcad2a6b8f535d55aac28fe179c6bad0cc4428e8
|
4
|
+
data.tar.gz: ed24f4cfcf59bad4a3ad034e2030cdd3593fbbe3567da6d1cfbf539d932e60a6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5b101d2ae230a52ba37b19a2e2e4c56570840c6bd99bf4bfae2223c1b4e453ab44cc39f0d3aa8ef752ff2f6c686952a15d8544294bddbf7706df6bf98f222ad8
|
7
|
+
data.tar.gz: 6e09c68e2ddc2ddfad5a33a4d1eeb894d1fd5c1257ba07229eb256bae2a715e083978610f9ada0e9b1f5a672b7edbf8fed6d1a0a7776da4ade7e747ae8076518
|
data/Gemfile.lock
CHANGED
@@ -139,6 +139,22 @@
|
|
139
139
|
"name": "Account",
|
140
140
|
"description": null,
|
141
141
|
"fields": [
|
142
|
+
{
|
143
|
+
"name": "accessMethod",
|
144
|
+
"description": "Access method for new users to join this account. 'invite only' is the default.",
|
145
|
+
"args": [],
|
146
|
+
"type": {
|
147
|
+
"kind": "NON_NULL",
|
148
|
+
"name": null,
|
149
|
+
"ofType": {
|
150
|
+
"kind": "ENUM",
|
151
|
+
"name": "AccountAccessMethod",
|
152
|
+
"ofType": null
|
153
|
+
}
|
154
|
+
},
|
155
|
+
"isDeprecated": false,
|
156
|
+
"deprecationReason": null
|
157
|
+
},
|
142
158
|
{
|
143
159
|
"name": "accountEmailDomain",
|
144
160
|
"description": null,
|
@@ -261,6 +277,35 @@
|
|
261
277
|
"enumValues": null,
|
262
278
|
"possibleTypes": null
|
263
279
|
},
|
280
|
+
{
|
281
|
+
"kind": "ENUM",
|
282
|
+
"name": "AccountAccessMethod",
|
283
|
+
"description": "different methods to control how new users can join an account",
|
284
|
+
"fields": null,
|
285
|
+
"inputFields": null,
|
286
|
+
"interfaces": null,
|
287
|
+
"enumValues": [
|
288
|
+
{
|
289
|
+
"name": "AUTHORIZED_DOMAIN",
|
290
|
+
"description": "when a user with the same email-domain as the account authorized domain is registered, it will be automatically added to this account (an accountEmailDomain need to be configured)",
|
291
|
+
"isDeprecated": false,
|
292
|
+
"deprecationReason": null
|
293
|
+
},
|
294
|
+
{
|
295
|
+
"name": "INVITE_ONLY",
|
296
|
+
"description": "new users can only be added to the account if they are invited",
|
297
|
+
"isDeprecated": false,
|
298
|
+
"deprecationReason": null
|
299
|
+
},
|
300
|
+
{
|
301
|
+
"name": "SSO",
|
302
|
+
"description": "an identity provider will be used to provide new users access to this account (an accountEmailDomain need to be configured)",
|
303
|
+
"isDeprecated": false,
|
304
|
+
"deprecationReason": null
|
305
|
+
}
|
306
|
+
],
|
307
|
+
"possibleTypes": null
|
308
|
+
},
|
264
309
|
{
|
265
310
|
"kind": "ENUM",
|
266
311
|
"name": "AccountAccessRole",
|
@@ -10831,6 +10876,93 @@
|
|
10831
10876
|
"enumValues": null,
|
10832
10877
|
"possibleTypes": null
|
10833
10878
|
},
|
10879
|
+
{
|
10880
|
+
"kind": "INPUT_OBJECT",
|
10881
|
+
"name": "CreateWorkflowTriggerInput",
|
10882
|
+
"description": "Create workflow trigger input",
|
10883
|
+
"fields": null,
|
10884
|
+
"inputFields": [
|
10885
|
+
{
|
10886
|
+
"name": "configuration",
|
10887
|
+
"description": "A JSON containing the configuration for each event log type",
|
10888
|
+
"type": {
|
10889
|
+
"kind": "SCALAR",
|
10890
|
+
"name": "JSON",
|
10891
|
+
"ofType": null
|
10892
|
+
},
|
10893
|
+
"defaultValue": null,
|
10894
|
+
"isDeprecated": false,
|
10895
|
+
"deprecationReason": null
|
10896
|
+
},
|
10897
|
+
{
|
10898
|
+
"name": "endpoint",
|
10899
|
+
"description": "Workflow trigger endpoint",
|
10900
|
+
"type": {
|
10901
|
+
"kind": "NON_NULL",
|
10902
|
+
"name": null,
|
10903
|
+
"ofType": {
|
10904
|
+
"kind": "SCALAR",
|
10905
|
+
"name": "String",
|
10906
|
+
"ofType": null
|
10907
|
+
}
|
10908
|
+
},
|
10909
|
+
"defaultValue": null,
|
10910
|
+
"isDeprecated": false,
|
10911
|
+
"deprecationReason": null
|
10912
|
+
},
|
10913
|
+
{
|
10914
|
+
"name": "environmentId",
|
10915
|
+
"description": "Environment id",
|
10916
|
+
"type": {
|
10917
|
+
"kind": "SCALAR",
|
10918
|
+
"name": "String",
|
10919
|
+
"ofType": null
|
10920
|
+
},
|
10921
|
+
"defaultValue": null,
|
10922
|
+
"isDeprecated": false,
|
10923
|
+
"deprecationReason": null
|
10924
|
+
},
|
10925
|
+
{
|
10926
|
+
"name": "eventLogTypes",
|
10927
|
+
"description": "Event log types",
|
10928
|
+
"type": {
|
10929
|
+
"kind": "NON_NULL",
|
10930
|
+
"name": null,
|
10931
|
+
"ofType": {
|
10932
|
+
"kind": "LIST",
|
10933
|
+
"name": null,
|
10934
|
+
"ofType": {
|
10935
|
+
"kind": "NON_NULL",
|
10936
|
+
"name": null,
|
10937
|
+
"ofType": {
|
10938
|
+
"kind": "ENUM",
|
10939
|
+
"name": "EventLogType",
|
10940
|
+
"ofType": null
|
10941
|
+
}
|
10942
|
+
}
|
10943
|
+
}
|
10944
|
+
},
|
10945
|
+
"defaultValue": null,
|
10946
|
+
"isDeprecated": false,
|
10947
|
+
"deprecationReason": null
|
10948
|
+
},
|
10949
|
+
{
|
10950
|
+
"name": "triggerId",
|
10951
|
+
"description": "Workflow trigger id",
|
10952
|
+
"type": {
|
10953
|
+
"kind": "SCALAR",
|
10954
|
+
"name": "String",
|
10955
|
+
"ofType": null
|
10956
|
+
},
|
10957
|
+
"defaultValue": null,
|
10958
|
+
"isDeprecated": false,
|
10959
|
+
"deprecationReason": null
|
10960
|
+
}
|
10961
|
+
],
|
10962
|
+
"interfaces": null,
|
10963
|
+
"enumValues": null,
|
10964
|
+
"possibleTypes": null
|
10965
|
+
},
|
10834
10966
|
{
|
10835
10967
|
"kind": "UNION",
|
10836
10968
|
"name": "Credentials",
|
@@ -21469,6 +21601,45 @@
|
|
21469
21601
|
"enumValues": null,
|
21470
21602
|
"possibleTypes": null
|
21471
21603
|
},
|
21604
|
+
{
|
21605
|
+
"kind": "INPUT_OBJECT",
|
21606
|
+
"name": "DeleteWorkflowTriggerInput",
|
21607
|
+
"description": "Delete workflow trigger input",
|
21608
|
+
"fields": null,
|
21609
|
+
"inputFields": [
|
21610
|
+
{
|
21611
|
+
"name": "environmentId",
|
21612
|
+
"description": "Environment id",
|
21613
|
+
"type": {
|
21614
|
+
"kind": "SCALAR",
|
21615
|
+
"name": "String",
|
21616
|
+
"ofType": null
|
21617
|
+
},
|
21618
|
+
"defaultValue": null,
|
21619
|
+
"isDeprecated": false,
|
21620
|
+
"deprecationReason": null
|
21621
|
+
},
|
21622
|
+
{
|
21623
|
+
"name": "workflowTriggerId",
|
21624
|
+
"description": "Workflow trigger id",
|
21625
|
+
"type": {
|
21626
|
+
"kind": "NON_NULL",
|
21627
|
+
"name": null,
|
21628
|
+
"ofType": {
|
21629
|
+
"kind": "SCALAR",
|
21630
|
+
"name": "String",
|
21631
|
+
"ofType": null
|
21632
|
+
}
|
21633
|
+
},
|
21634
|
+
"defaultValue": null,
|
21635
|
+
"isDeprecated": false,
|
21636
|
+
"deprecationReason": null
|
21637
|
+
}
|
21638
|
+
],
|
21639
|
+
"interfaces": null,
|
21640
|
+
"enumValues": null,
|
21641
|
+
"possibleTypes": null
|
21642
|
+
},
|
21472
21643
|
{
|
21473
21644
|
"kind": "ENUM",
|
21474
21645
|
"name": "Department",
|
@@ -32349,6 +32520,53 @@
|
|
32349
32520
|
"enumValues": null,
|
32350
32521
|
"possibleTypes": null
|
32351
32522
|
},
|
32523
|
+
{
|
32524
|
+
"kind": "INPUT_OBJECT",
|
32525
|
+
"name": "GetWorkflowTriggersInput",
|
32526
|
+
"description": "Get workflow triggers input",
|
32527
|
+
"fields": null,
|
32528
|
+
"inputFields": [
|
32529
|
+
{
|
32530
|
+
"name": "environmentId",
|
32531
|
+
"description": "Environment id",
|
32532
|
+
"type": {
|
32533
|
+
"kind": "SCALAR",
|
32534
|
+
"name": "String",
|
32535
|
+
"ofType": null
|
32536
|
+
},
|
32537
|
+
"defaultValue": null,
|
32538
|
+
"isDeprecated": false,
|
32539
|
+
"deprecationReason": null
|
32540
|
+
},
|
32541
|
+
{
|
32542
|
+
"name": "triggerId",
|
32543
|
+
"description": "Trigger id",
|
32544
|
+
"type": {
|
32545
|
+
"kind": "SCALAR",
|
32546
|
+
"name": "String",
|
32547
|
+
"ofType": null
|
32548
|
+
},
|
32549
|
+
"defaultValue": null,
|
32550
|
+
"isDeprecated": false,
|
32551
|
+
"deprecationReason": null
|
32552
|
+
},
|
32553
|
+
{
|
32554
|
+
"name": "workflowTriggerId",
|
32555
|
+
"description": "Workflow trigger id",
|
32556
|
+
"type": {
|
32557
|
+
"kind": "SCALAR",
|
32558
|
+
"name": "String",
|
32559
|
+
"ofType": null
|
32560
|
+
},
|
32561
|
+
"defaultValue": null,
|
32562
|
+
"isDeprecated": false,
|
32563
|
+
"deprecationReason": null
|
32564
|
+
}
|
32565
|
+
],
|
32566
|
+
"interfaces": null,
|
32567
|
+
"enumValues": null,
|
32568
|
+
"possibleTypes": null
|
32569
|
+
},
|
32352
32570
|
{
|
32353
32571
|
"kind": "INPUT_OBJECT",
|
32354
32572
|
"name": "GrantPromotionalEntitlementInput",
|
@@ -40918,6 +41136,39 @@
|
|
40918
41136
|
"isDeprecated": true,
|
40919
41137
|
"deprecationReason": "Deprecated query, use 'reportUsage' instead"
|
40920
41138
|
},
|
41139
|
+
{
|
41140
|
+
"name": "createWorkflowTrigger",
|
41141
|
+
"description": "Create a new workflow trigger",
|
41142
|
+
"args": [
|
41143
|
+
{
|
41144
|
+
"name": "input",
|
41145
|
+
"description": null,
|
41146
|
+
"type": {
|
41147
|
+
"kind": "NON_NULL",
|
41148
|
+
"name": null,
|
41149
|
+
"ofType": {
|
41150
|
+
"kind": "INPUT_OBJECT",
|
41151
|
+
"name": "CreateWorkflowTriggerInput",
|
41152
|
+
"ofType": null
|
41153
|
+
}
|
41154
|
+
},
|
41155
|
+
"defaultValue": null,
|
41156
|
+
"isDeprecated": false,
|
41157
|
+
"deprecationReason": null
|
41158
|
+
}
|
41159
|
+
],
|
41160
|
+
"type": {
|
41161
|
+
"kind": "NON_NULL",
|
41162
|
+
"name": null,
|
41163
|
+
"ofType": {
|
41164
|
+
"kind": "OBJECT",
|
41165
|
+
"name": "WorkflowTriggerDTO",
|
41166
|
+
"ofType": null
|
41167
|
+
}
|
41168
|
+
},
|
41169
|
+
"isDeprecated": false,
|
41170
|
+
"deprecationReason": null
|
41171
|
+
},
|
40921
41172
|
{
|
40922
41173
|
"name": "delegateSubscriptionToCustomer",
|
40923
41174
|
"description": "Delegates a subscription to a different customer (the paying customer of the subscription will not change)",
|
@@ -41215,6 +41466,35 @@
|
|
41215
41466
|
"isDeprecated": false,
|
41216
41467
|
"deprecationReason": null
|
41217
41468
|
},
|
41469
|
+
{
|
41470
|
+
"name": "deleteWorkflowTrigger",
|
41471
|
+
"description": "Delete a workflow trigger",
|
41472
|
+
"args": [
|
41473
|
+
{
|
41474
|
+
"name": "input",
|
41475
|
+
"description": null,
|
41476
|
+
"type": {
|
41477
|
+
"kind": "NON_NULL",
|
41478
|
+
"name": null,
|
41479
|
+
"ofType": {
|
41480
|
+
"kind": "INPUT_OBJECT",
|
41481
|
+
"name": "DeleteWorkflowTriggerInput",
|
41482
|
+
"ofType": null
|
41483
|
+
}
|
41484
|
+
},
|
41485
|
+
"defaultValue": null,
|
41486
|
+
"isDeprecated": false,
|
41487
|
+
"deprecationReason": null
|
41488
|
+
}
|
41489
|
+
],
|
41490
|
+
"type": {
|
41491
|
+
"kind": "SCALAR",
|
41492
|
+
"name": "String",
|
41493
|
+
"ofType": null
|
41494
|
+
},
|
41495
|
+
"isDeprecated": false,
|
41496
|
+
"deprecationReason": null
|
41497
|
+
},
|
41218
41498
|
{
|
41219
41499
|
"name": "detachCustomerPaymentMethod",
|
41220
41500
|
"description": null,
|
@@ -43963,7 +44243,7 @@
|
|
43963
44243
|
},
|
43964
44244
|
{
|
43965
44245
|
"name": "workflowsLogin",
|
43966
|
-
"description":
|
44246
|
+
"description": "Authentication for the workflows UI",
|
43967
44247
|
"args": [
|
43968
44248
|
{
|
43969
44249
|
"name": "input",
|
@@ -66189,6 +66469,30 @@
|
|
66189
66469
|
"isDeprecated": false,
|
66190
66470
|
"deprecationReason": null
|
66191
66471
|
},
|
66472
|
+
{
|
66473
|
+
"name": "verifiedAccountDomains",
|
66474
|
+
"description": "Returns a list of email-domains of verified account members ",
|
66475
|
+
"args": [],
|
66476
|
+
"type": {
|
66477
|
+
"kind": "NON_NULL",
|
66478
|
+
"name": null,
|
66479
|
+
"ofType": {
|
66480
|
+
"kind": "LIST",
|
66481
|
+
"name": null,
|
66482
|
+
"ofType": {
|
66483
|
+
"kind": "NON_NULL",
|
66484
|
+
"name": null,
|
66485
|
+
"ofType": {
|
66486
|
+
"kind": "SCALAR",
|
66487
|
+
"name": "String",
|
66488
|
+
"ofType": null
|
66489
|
+
}
|
66490
|
+
}
|
66491
|
+
}
|
66492
|
+
},
|
66493
|
+
"isDeprecated": false,
|
66494
|
+
"deprecationReason": null
|
66495
|
+
},
|
66192
66496
|
{
|
66193
66497
|
"name": "widgetConfiguration",
|
66194
66498
|
"description": null,
|
@@ -66221,6 +66525,47 @@
|
|
66221
66525
|
},
|
66222
66526
|
"isDeprecated": false,
|
66223
66527
|
"deprecationReason": null
|
66528
|
+
},
|
66529
|
+
{
|
66530
|
+
"name": "workflowTriggers",
|
66531
|
+
"description": "Get all workflow triggers",
|
66532
|
+
"args": [
|
66533
|
+
{
|
66534
|
+
"name": "input",
|
66535
|
+
"description": null,
|
66536
|
+
"type": {
|
66537
|
+
"kind": "NON_NULL",
|
66538
|
+
"name": null,
|
66539
|
+
"ofType": {
|
66540
|
+
"kind": "INPUT_OBJECT",
|
66541
|
+
"name": "GetWorkflowTriggersInput",
|
66542
|
+
"ofType": null
|
66543
|
+
}
|
66544
|
+
},
|
66545
|
+
"defaultValue": null,
|
66546
|
+
"isDeprecated": false,
|
66547
|
+
"deprecationReason": null
|
66548
|
+
}
|
66549
|
+
],
|
66550
|
+
"type": {
|
66551
|
+
"kind": "NON_NULL",
|
66552
|
+
"name": null,
|
66553
|
+
"ofType": {
|
66554
|
+
"kind": "LIST",
|
66555
|
+
"name": null,
|
66556
|
+
"ofType": {
|
66557
|
+
"kind": "NON_NULL",
|
66558
|
+
"name": null,
|
66559
|
+
"ofType": {
|
66560
|
+
"kind": "OBJECT",
|
66561
|
+
"name": "WorkflowTriggerDTO",
|
66562
|
+
"ofType": null
|
66563
|
+
}
|
66564
|
+
}
|
66565
|
+
}
|
66566
|
+
},
|
66567
|
+
"isDeprecated": false,
|
66568
|
+
"deprecationReason": null
|
66224
66569
|
}
|
66225
66570
|
],
|
66226
66571
|
"inputFields": null,
|
@@ -81024,6 +81369,30 @@
|
|
81024
81369
|
"description": null,
|
81025
81370
|
"fields": null,
|
81026
81371
|
"inputFields": [
|
81372
|
+
{
|
81373
|
+
"name": "accessMethod",
|
81374
|
+
"description": "The method of adding new members to this account",
|
81375
|
+
"type": {
|
81376
|
+
"kind": "ENUM",
|
81377
|
+
"name": "AccountAccessMethod",
|
81378
|
+
"ofType": null
|
81379
|
+
},
|
81380
|
+
"defaultValue": null,
|
81381
|
+
"isDeprecated": false,
|
81382
|
+
"deprecationReason": null
|
81383
|
+
},
|
81384
|
+
{
|
81385
|
+
"name": "accountEmailDomain",
|
81386
|
+
"description": "Email domain to be used for sso and authorized domain configuration",
|
81387
|
+
"type": {
|
81388
|
+
"kind": "SCALAR",
|
81389
|
+
"name": "String",
|
81390
|
+
"ofType": null
|
81391
|
+
},
|
81392
|
+
"defaultValue": null,
|
81393
|
+
"isDeprecated": false,
|
81394
|
+
"deprecationReason": null
|
81395
|
+
},
|
81027
81396
|
{
|
81028
81397
|
"name": "defaultSSORoles",
|
81029
81398
|
"description": null,
|
@@ -86163,6 +86532,89 @@
|
|
86163
86532
|
],
|
86164
86533
|
"possibleTypes": null
|
86165
86534
|
},
|
86535
|
+
{
|
86536
|
+
"kind": "OBJECT",
|
86537
|
+
"name": "WorkflowTriggerDTO",
|
86538
|
+
"description": "Workflow trigger",
|
86539
|
+
"fields": [
|
86540
|
+
{
|
86541
|
+
"name": "endpoint",
|
86542
|
+
"description": "Workflow trigger endpoint",
|
86543
|
+
"args": [],
|
86544
|
+
"type": {
|
86545
|
+
"kind": "NON_NULL",
|
86546
|
+
"name": null,
|
86547
|
+
"ofType": {
|
86548
|
+
"kind": "SCALAR",
|
86549
|
+
"name": "String",
|
86550
|
+
"ofType": null
|
86551
|
+
}
|
86552
|
+
},
|
86553
|
+
"isDeprecated": false,
|
86554
|
+
"deprecationReason": null
|
86555
|
+
},
|
86556
|
+
{
|
86557
|
+
"name": "eventLogTypes",
|
86558
|
+
"description": "Event log types",
|
86559
|
+
"args": [],
|
86560
|
+
"type": {
|
86561
|
+
"kind": "NON_NULL",
|
86562
|
+
"name": null,
|
86563
|
+
"ofType": {
|
86564
|
+
"kind": "LIST",
|
86565
|
+
"name": null,
|
86566
|
+
"ofType": {
|
86567
|
+
"kind": "NON_NULL",
|
86568
|
+
"name": null,
|
86569
|
+
"ofType": {
|
86570
|
+
"kind": "ENUM",
|
86571
|
+
"name": "EventLogType",
|
86572
|
+
"ofType": null
|
86573
|
+
}
|
86574
|
+
}
|
86575
|
+
}
|
86576
|
+
},
|
86577
|
+
"isDeprecated": false,
|
86578
|
+
"deprecationReason": null
|
86579
|
+
},
|
86580
|
+
{
|
86581
|
+
"name": "id",
|
86582
|
+
"description": null,
|
86583
|
+
"args": [],
|
86584
|
+
"type": {
|
86585
|
+
"kind": "NON_NULL",
|
86586
|
+
"name": null,
|
86587
|
+
"ofType": {
|
86588
|
+
"kind": "SCALAR",
|
86589
|
+
"name": "String",
|
86590
|
+
"ofType": null
|
86591
|
+
}
|
86592
|
+
},
|
86593
|
+
"isDeprecated": false,
|
86594
|
+
"deprecationReason": null
|
86595
|
+
},
|
86596
|
+
{
|
86597
|
+
"name": "triggerId",
|
86598
|
+
"description": "Workflow trigger id",
|
86599
|
+
"args": [],
|
86600
|
+
"type": {
|
86601
|
+
"kind": "NON_NULL",
|
86602
|
+
"name": null,
|
86603
|
+
"ofType": {
|
86604
|
+
"kind": "SCALAR",
|
86605
|
+
"name": "String",
|
86606
|
+
"ofType": null
|
86607
|
+
}
|
86608
|
+
},
|
86609
|
+
"isDeprecated": false,
|
86610
|
+
"deprecationReason": null
|
86611
|
+
}
|
86612
|
+
],
|
86613
|
+
"inputFields": null,
|
86614
|
+
"interfaces": [],
|
86615
|
+
"enumValues": null,
|
86616
|
+
"possibleTypes": null
|
86617
|
+
},
|
86166
86618
|
{
|
86167
86619
|
"kind": "OBJECT",
|
86168
86620
|
"name": "WorkflowsLoginDTO",
|
data/lib/stigg/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stigg-api-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.341.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stigg
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03
|
11
|
+
date: 2025-04-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: graphlient
|