stigg-api-client 5.63.0 → 5.65.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d149ae361c6e0e937ae8ad48820e4a0d22ccbff5f9f729d954d3673e9bab685e
4
- data.tar.gz: 613fd3935282a7f115392aafe98053a3cb2d7c82b102ee05bf759da7166d00d6
3
+ metadata.gz: a20c6268dc5581f8082a75282c4e2f57074a382d62181ff8fec22717110d5a20
4
+ data.tar.gz: a3d249b57238f41d8a0497a8347704e6d3d18ba71ef9eaeeb1c6798b12d8a825
5
5
  SHA512:
6
- metadata.gz: ca6081d75be4afeebe2557e00ae18d2f58537eadcf5948b2706611093cd01f37b419ba7cd46c5bc0090fa3e5f69f0c769f538b28ebd05b9650cc1b2fd2bdc5ef
7
- data.tar.gz: a3c614b44f3a69d7efdc10a799cd7a2f4a8aada11a8b97eaac0199f67379b98e6d2b67a136144704c9e81f8ea71a5359401f8f58019cc590b5371b50de354946
6
+ metadata.gz: 7320e378aaeaedd45572be4c84e454ac709c28bf26a60c4822ac0636f3d10598067d60faea8d917463fff2219ae5bbc5fbfaced457340ed4a9028712c1c69c12
7
+ data.tar.gz: 046acc5982f4448037c7611b7b30d9f33981a52c9956de25070c1f5560692d3911b015030acd2afe20c687fdf46176231a68343464c8f1cfaa2e2e360cc295e8
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (5.63.0)
4
+ stigg-api-client (5.65.0)
5
5
  graphlient (>= 0.6.0, < 1.0)
6
6
  graphql-client (>= 0.19, < 1.0)
7
7
 
@@ -2654,11 +2654,19 @@ module Stigg
2654
2654
  GetCreditLedger = <<~GRAPHQL
2655
2655
  query GetCreditLedger($input: CreditLedgerInput!) {
2656
2656
  creditsLedger(input: $input) {
2657
- events {
2658
- ...CreditLedgerFragment
2657
+ pageInfo {
2658
+ ...PageInfoFragment
2659
+ }
2660
+ edges {
2661
+ node {
2662
+ ...CreditLedgerFragment
2663
+ }
2664
+ cursor
2659
2665
  }
2666
+ totalCount
2660
2667
  }
2661
2668
  }
2669
+ #{Fragment::PageInfoFragment}
2662
2670
  #{Fragment::CreditLedgerFragment}
2663
2671
  GRAPHQL
2664
2672
 
@@ -4591,6 +4591,53 @@
4591
4591
  {
4592
4592
  "name": "id",
4593
4593
  "description": "Plan ID to archive",
4594
+ "type": {
4595
+ "kind": "SCALAR",
4596
+ "name": "String",
4597
+ "ofType": null
4598
+ },
4599
+ "defaultValue": null,
4600
+ "isDeprecated": false,
4601
+ "deprecationReason": null
4602
+ },
4603
+ {
4604
+ "name": "refId",
4605
+ "description": "Plan refId to archive",
4606
+ "type": {
4607
+ "kind": "SCALAR",
4608
+ "name": "String",
4609
+ "ofType": null
4610
+ },
4611
+ "defaultValue": null,
4612
+ "isDeprecated": false,
4613
+ "deprecationReason": null
4614
+ }
4615
+ ],
4616
+ "interfaces": null,
4617
+ "enumValues": null,
4618
+ "possibleTypes": null
4619
+ },
4620
+ {
4621
+ "kind": "INPUT_OBJECT",
4622
+ "name": "ArchiveProductInput",
4623
+ "description": "Input for archiving a product",
4624
+ "fields": null,
4625
+ "inputFields": [
4626
+ {
4627
+ "name": "environmentId",
4628
+ "description": "Environment ID to archive the product in",
4629
+ "type": {
4630
+ "kind": "SCALAR",
4631
+ "name": "UUID",
4632
+ "ofType": null
4633
+ },
4634
+ "defaultValue": null,
4635
+ "isDeprecated": false,
4636
+ "deprecationReason": null
4637
+ },
4638
+ {
4639
+ "name": "refId",
4640
+ "description": "Product refId to archive",
4594
4641
  "type": {
4595
4642
  "kind": "NON_NULL",
4596
4643
  "name": null,
@@ -14322,12 +14369,12 @@
14322
14369
  },
14323
14370
  {
14324
14371
  "kind": "OBJECT",
14325
- "name": "CreditLedger",
14326
- "description": "Credits ledger",
14372
+ "name": "CreditLedgerConnection",
14373
+ "description": null,
14327
14374
  "fields": [
14328
14375
  {
14329
- "name": "events",
14330
- "description": "List of credit ledger events",
14376
+ "name": "edges",
14377
+ "description": "Edges in the current page",
14331
14378
  "args": [],
14332
14379
  "type": {
14333
14380
  "kind": "NON_NULL",
@@ -14340,7 +14387,7 @@
14340
14387
  "name": null,
14341
14388
  "ofType": {
14342
14389
  "kind": "OBJECT",
14343
- "name": "CreditLedgerEvent",
14390
+ "name": "CreditLedgerEdge",
14344
14391
  "ofType": null
14345
14392
  }
14346
14393
  }
@@ -14348,6 +14395,81 @@
14348
14395
  },
14349
14396
  "isDeprecated": false,
14350
14397
  "deprecationReason": null
14398
+ },
14399
+ {
14400
+ "name": "pageInfo",
14401
+ "description": "Pagination information",
14402
+ "args": [],
14403
+ "type": {
14404
+ "kind": "NON_NULL",
14405
+ "name": null,
14406
+ "ofType": {
14407
+ "kind": "OBJECT",
14408
+ "name": "PageInfo",
14409
+ "ofType": null
14410
+ }
14411
+ },
14412
+ "isDeprecated": false,
14413
+ "deprecationReason": null
14414
+ },
14415
+ {
14416
+ "name": "totalCount",
14417
+ "description": "Total number of items matching the filter",
14418
+ "args": [],
14419
+ "type": {
14420
+ "kind": "NON_NULL",
14421
+ "name": null,
14422
+ "ofType": {
14423
+ "kind": "SCALAR",
14424
+ "name": "Int",
14425
+ "ofType": null
14426
+ }
14427
+ },
14428
+ "isDeprecated": false,
14429
+ "deprecationReason": null
14430
+ }
14431
+ ],
14432
+ "inputFields": null,
14433
+ "interfaces": [],
14434
+ "enumValues": null,
14435
+ "possibleTypes": null
14436
+ },
14437
+ {
14438
+ "kind": "OBJECT",
14439
+ "name": "CreditLedgerEdge",
14440
+ "description": null,
14441
+ "fields": [
14442
+ {
14443
+ "name": "cursor",
14444
+ "description": "An opaque cursor for this item",
14445
+ "args": [],
14446
+ "type": {
14447
+ "kind": "NON_NULL",
14448
+ "name": null,
14449
+ "ofType": {
14450
+ "kind": "SCALAR",
14451
+ "name": "String",
14452
+ "ofType": null
14453
+ }
14454
+ },
14455
+ "isDeprecated": false,
14456
+ "deprecationReason": null
14457
+ },
14458
+ {
14459
+ "name": "node",
14460
+ "description": "The item at the edge",
14461
+ "args": [],
14462
+ "type": {
14463
+ "kind": "NON_NULL",
14464
+ "name": null,
14465
+ "ofType": {
14466
+ "kind": "OBJECT",
14467
+ "name": "CreditLedgerEvent",
14468
+ "ofType": null
14469
+ }
14470
+ },
14471
+ "isDeprecated": false,
14472
+ "deprecationReason": null
14351
14473
  }
14352
14474
  ],
14353
14475
  "inputFields": null,
@@ -14539,6 +14661,18 @@
14539
14661
  "description": "Input for retrieving credit ledger",
14540
14662
  "fields": null,
14541
14663
  "inputFields": [
14664
+ {
14665
+ "name": "currencyId",
14666
+ "description": "The credit currency ID of the credit ledger",
14667
+ "type": {
14668
+ "kind": "SCALAR",
14669
+ "name": "String",
14670
+ "ofType": null
14671
+ },
14672
+ "defaultValue": null,
14673
+ "isDeprecated": false,
14674
+ "deprecationReason": null
14675
+ },
14542
14676
  {
14543
14677
  "name": "customerId",
14544
14678
  "description": "The customer ID of the credit ledger",
@@ -14567,6 +14701,18 @@
14567
14701
  "isDeprecated": false,
14568
14702
  "deprecationReason": null
14569
14703
  },
14704
+ {
14705
+ "name": "paging",
14706
+ "description": "Cursor-based pagination input",
14707
+ "type": {
14708
+ "kind": "INPUT_OBJECT",
14709
+ "name": "CursorPaging",
14710
+ "ofType": null
14711
+ },
14712
+ "defaultValue": null,
14713
+ "isDeprecated": false,
14714
+ "deprecationReason": null
14715
+ },
14570
14716
  {
14571
14717
  "name": "resourceId",
14572
14718
  "description": "The resource ID of the credit ledger",
@@ -29999,6 +30145,12 @@
29999
30145
  "isDeprecated": false,
30000
30146
  "deprecationReason": null
30001
30147
  },
30148
+ {
30149
+ "name": "CannotArchiveProductError",
30150
+ "description": "Cannot archive product because one or more of it packages cannot be archived",
30151
+ "isDeprecated": false,
30152
+ "deprecationReason": null
30153
+ },
30002
30154
  {
30003
30155
  "name": "CannotChangeBillingIntegration",
30004
30156
  "description": "Cannot change billing integration at current customer state",
@@ -30023,12 +30175,6 @@
30023
30175
  "isDeprecated": false,
30024
30176
  "deprecationReason": null
30025
30177
  },
30026
- {
30027
- "name": "CannotDeleteProductError",
30028
- "description": null,
30029
- "isDeprecated": false,
30030
- "deprecationReason": null
30031
- },
30032
30178
  {
30033
30179
  "name": "CannotEditPackageInNonDraftMode",
30034
30180
  "description": null,
@@ -47628,6 +47774,39 @@
47628
47774
  "isDeprecated": false,
47629
47775
  "deprecationReason": null
47630
47776
  },
47777
+ {
47778
+ "name": "archiveOneProduct",
47779
+ "description": "Archive a product",
47780
+ "args": [
47781
+ {
47782
+ "name": "input",
47783
+ "description": "Input for archiving a product",
47784
+ "type": {
47785
+ "kind": "NON_NULL",
47786
+ "name": null,
47787
+ "ofType": {
47788
+ "kind": "INPUT_OBJECT",
47789
+ "name": "ArchiveProductInput",
47790
+ "ofType": null
47791
+ }
47792
+ },
47793
+ "defaultValue": null,
47794
+ "isDeprecated": false,
47795
+ "deprecationReason": null
47796
+ }
47797
+ ],
47798
+ "type": {
47799
+ "kind": "NON_NULL",
47800
+ "name": null,
47801
+ "ofType": {
47802
+ "kind": "OBJECT",
47803
+ "name": "Product",
47804
+ "ofType": null
47805
+ }
47806
+ },
47807
+ "isDeprecated": false,
47808
+ "deprecationReason": null
47809
+ },
47631
47810
  {
47632
47811
  "name": "archivePackageGroup",
47633
47812
  "description": "Archiving a package group",
@@ -59239,6 +59418,18 @@
59239
59418
  "isDeprecated": false,
59240
59419
  "deprecationReason": null
59241
59420
  },
59421
+ {
59422
+ "name": "status",
59423
+ "description": null,
59424
+ "type": {
59425
+ "kind": "INPUT_OBJECT",
59426
+ "name": "ProductStatusFilterComparison",
59427
+ "ofType": null
59428
+ },
59429
+ "defaultValue": null,
59430
+ "isDeprecated": false,
59431
+ "deprecationReason": null
59432
+ },
59242
59433
  {
59243
59434
  "name": "updatedAt",
59244
59435
  "description": null,
@@ -64982,6 +65173,18 @@
64982
65173
  "isDeprecated": false,
64983
65174
  "deprecationReason": null
64984
65175
  },
65176
+ {
65177
+ "name": "status",
65178
+ "description": null,
65179
+ "type": {
65180
+ "kind": "INPUT_OBJECT",
65181
+ "name": "ProductStatusFilterComparison",
65182
+ "ofType": null
65183
+ },
65184
+ "defaultValue": null,
65185
+ "isDeprecated": false,
65186
+ "deprecationReason": null
65187
+ },
64985
65188
  {
64986
65189
  "name": "updatedAt",
64987
65190
  "description": null,
@@ -69115,6 +69318,22 @@
69115
69318
  "isDeprecated": false,
69116
69319
  "deprecationReason": null
69117
69320
  },
69321
+ {
69322
+ "name": "status",
69323
+ "description": "The status of the product",
69324
+ "args": [],
69325
+ "type": {
69326
+ "kind": "NON_NULL",
69327
+ "name": null,
69328
+ "ofType": {
69329
+ "kind": "ENUM",
69330
+ "name": "ProductStatus",
69331
+ "ofType": null
69332
+ }
69333
+ },
69334
+ "isDeprecated": false,
69335
+ "deprecationReason": null
69336
+ },
69118
69337
  {
69119
69338
  "name": "subscriptionStartPlan",
69120
69339
  "description": null,
@@ -69290,6 +69509,18 @@
69290
69509
  "isDeprecated": false,
69291
69510
  "deprecationReason": null
69292
69511
  },
69512
+ {
69513
+ "name": "status",
69514
+ "description": null,
69515
+ "args": [],
69516
+ "type": {
69517
+ "kind": "ENUM",
69518
+ "name": "ProductStatus",
69519
+ "ofType": null
69520
+ },
69521
+ "isDeprecated": false,
69522
+ "deprecationReason": null
69523
+ },
69293
69524
  {
69294
69525
  "name": "updatedAt",
69295
69526
  "description": null,
@@ -69527,6 +69758,18 @@
69527
69758
  "isDeprecated": false,
69528
69759
  "deprecationReason": null
69529
69760
  },
69761
+ {
69762
+ "name": "status",
69763
+ "description": null,
69764
+ "args": [],
69765
+ "type": {
69766
+ "kind": "SCALAR",
69767
+ "name": "Int",
69768
+ "ofType": null
69769
+ },
69770
+ "isDeprecated": false,
69771
+ "deprecationReason": null
69772
+ },
69530
69773
  {
69531
69774
  "name": "updatedAt",
69532
69775
  "description": null,
@@ -70052,6 +70295,18 @@
70052
70295
  "isDeprecated": false,
70053
70296
  "deprecationReason": null
70054
70297
  },
70298
+ {
70299
+ "name": "status",
70300
+ "description": null,
70301
+ "type": {
70302
+ "kind": "INPUT_OBJECT",
70303
+ "name": "ProductStatusFilterComparison",
70304
+ "ofType": null
70305
+ },
70306
+ "defaultValue": null,
70307
+ "isDeprecated": false,
70308
+ "deprecationReason": null
70309
+ },
70055
70310
  {
70056
70311
  "name": "updatedAt",
70057
70312
  "description": null,
@@ -70170,6 +70425,18 @@
70170
70425
  "isDeprecated": false,
70171
70426
  "deprecationReason": null
70172
70427
  },
70428
+ {
70429
+ "name": "status",
70430
+ "description": null,
70431
+ "args": [],
70432
+ "type": {
70433
+ "kind": "ENUM",
70434
+ "name": "ProductStatus",
70435
+ "ofType": null
70436
+ },
70437
+ "isDeprecated": false,
70438
+ "deprecationReason": null
70439
+ },
70173
70440
  {
70174
70441
  "name": "updatedAt",
70175
70442
  "description": null,
@@ -70289,6 +70556,18 @@
70289
70556
  "isDeprecated": false,
70290
70557
  "deprecationReason": null
70291
70558
  },
70559
+ {
70560
+ "name": "status",
70561
+ "description": null,
70562
+ "args": [],
70563
+ "type": {
70564
+ "kind": "ENUM",
70565
+ "name": "ProductStatus",
70566
+ "ofType": null
70567
+ },
70568
+ "isDeprecated": false,
70569
+ "deprecationReason": null
70570
+ },
70292
70571
  {
70293
70572
  "name": "updatedAt",
70294
70573
  "description": null,
@@ -70656,6 +70935,12 @@
70656
70935
  "isDeprecated": false,
70657
70936
  "deprecationReason": null
70658
70937
  },
70938
+ {
70939
+ "name": "status",
70940
+ "description": null,
70941
+ "isDeprecated": false,
70942
+ "deprecationReason": null
70943
+ },
70659
70944
  {
70660
70945
  "name": "updatedAt",
70661
70946
  "description": null,
@@ -70665,6 +70950,224 @@
70665
70950
  ],
70666
70951
  "possibleTypes": null
70667
70952
  },
70953
+ {
70954
+ "kind": "ENUM",
70955
+ "name": "ProductStatus",
70956
+ "description": "Product status enum",
70957
+ "fields": null,
70958
+ "inputFields": null,
70959
+ "interfaces": null,
70960
+ "enumValues": [
70961
+ {
70962
+ "name": "ARCHIVED",
70963
+ "description": "Archived",
70964
+ "isDeprecated": false,
70965
+ "deprecationReason": null
70966
+ },
70967
+ {
70968
+ "name": "PUBLISHED",
70969
+ "description": "Published",
70970
+ "isDeprecated": false,
70971
+ "deprecationReason": null
70972
+ }
70973
+ ],
70974
+ "possibleTypes": null
70975
+ },
70976
+ {
70977
+ "kind": "INPUT_OBJECT",
70978
+ "name": "ProductStatusFilterComparison",
70979
+ "description": null,
70980
+ "fields": null,
70981
+ "inputFields": [
70982
+ {
70983
+ "name": "eq",
70984
+ "description": null,
70985
+ "type": {
70986
+ "kind": "ENUM",
70987
+ "name": "ProductStatus",
70988
+ "ofType": null
70989
+ },
70990
+ "defaultValue": null,
70991
+ "isDeprecated": false,
70992
+ "deprecationReason": null
70993
+ },
70994
+ {
70995
+ "name": "gt",
70996
+ "description": null,
70997
+ "type": {
70998
+ "kind": "ENUM",
70999
+ "name": "ProductStatus",
71000
+ "ofType": null
71001
+ },
71002
+ "defaultValue": null,
71003
+ "isDeprecated": false,
71004
+ "deprecationReason": null
71005
+ },
71006
+ {
71007
+ "name": "gte",
71008
+ "description": null,
71009
+ "type": {
71010
+ "kind": "ENUM",
71011
+ "name": "ProductStatus",
71012
+ "ofType": null
71013
+ },
71014
+ "defaultValue": null,
71015
+ "isDeprecated": false,
71016
+ "deprecationReason": null
71017
+ },
71018
+ {
71019
+ "name": "iLike",
71020
+ "description": null,
71021
+ "type": {
71022
+ "kind": "ENUM",
71023
+ "name": "ProductStatus",
71024
+ "ofType": null
71025
+ },
71026
+ "defaultValue": null,
71027
+ "isDeprecated": false,
71028
+ "deprecationReason": null
71029
+ },
71030
+ {
71031
+ "name": "in",
71032
+ "description": null,
71033
+ "type": {
71034
+ "kind": "LIST",
71035
+ "name": null,
71036
+ "ofType": {
71037
+ "kind": "NON_NULL",
71038
+ "name": null,
71039
+ "ofType": {
71040
+ "kind": "ENUM",
71041
+ "name": "ProductStatus",
71042
+ "ofType": null
71043
+ }
71044
+ }
71045
+ },
71046
+ "defaultValue": null,
71047
+ "isDeprecated": false,
71048
+ "deprecationReason": null
71049
+ },
71050
+ {
71051
+ "name": "is",
71052
+ "description": null,
71053
+ "type": {
71054
+ "kind": "SCALAR",
71055
+ "name": "Boolean",
71056
+ "ofType": null
71057
+ },
71058
+ "defaultValue": null,
71059
+ "isDeprecated": false,
71060
+ "deprecationReason": null
71061
+ },
71062
+ {
71063
+ "name": "isNot",
71064
+ "description": null,
71065
+ "type": {
71066
+ "kind": "SCALAR",
71067
+ "name": "Boolean",
71068
+ "ofType": null
71069
+ },
71070
+ "defaultValue": null,
71071
+ "isDeprecated": false,
71072
+ "deprecationReason": null
71073
+ },
71074
+ {
71075
+ "name": "like",
71076
+ "description": null,
71077
+ "type": {
71078
+ "kind": "ENUM",
71079
+ "name": "ProductStatus",
71080
+ "ofType": null
71081
+ },
71082
+ "defaultValue": null,
71083
+ "isDeprecated": false,
71084
+ "deprecationReason": null
71085
+ },
71086
+ {
71087
+ "name": "lt",
71088
+ "description": null,
71089
+ "type": {
71090
+ "kind": "ENUM",
71091
+ "name": "ProductStatus",
71092
+ "ofType": null
71093
+ },
71094
+ "defaultValue": null,
71095
+ "isDeprecated": false,
71096
+ "deprecationReason": null
71097
+ },
71098
+ {
71099
+ "name": "lte",
71100
+ "description": null,
71101
+ "type": {
71102
+ "kind": "ENUM",
71103
+ "name": "ProductStatus",
71104
+ "ofType": null
71105
+ },
71106
+ "defaultValue": null,
71107
+ "isDeprecated": false,
71108
+ "deprecationReason": null
71109
+ },
71110
+ {
71111
+ "name": "neq",
71112
+ "description": null,
71113
+ "type": {
71114
+ "kind": "ENUM",
71115
+ "name": "ProductStatus",
71116
+ "ofType": null
71117
+ },
71118
+ "defaultValue": null,
71119
+ "isDeprecated": false,
71120
+ "deprecationReason": null
71121
+ },
71122
+ {
71123
+ "name": "notILike",
71124
+ "description": null,
71125
+ "type": {
71126
+ "kind": "ENUM",
71127
+ "name": "ProductStatus",
71128
+ "ofType": null
71129
+ },
71130
+ "defaultValue": null,
71131
+ "isDeprecated": false,
71132
+ "deprecationReason": null
71133
+ },
71134
+ {
71135
+ "name": "notIn",
71136
+ "description": null,
71137
+ "type": {
71138
+ "kind": "LIST",
71139
+ "name": null,
71140
+ "ofType": {
71141
+ "kind": "NON_NULL",
71142
+ "name": null,
71143
+ "ofType": {
71144
+ "kind": "ENUM",
71145
+ "name": "ProductStatus",
71146
+ "ofType": null
71147
+ }
71148
+ }
71149
+ },
71150
+ "defaultValue": null,
71151
+ "isDeprecated": false,
71152
+ "deprecationReason": null
71153
+ },
71154
+ {
71155
+ "name": "notLike",
71156
+ "description": null,
71157
+ "type": {
71158
+ "kind": "ENUM",
71159
+ "name": "ProductStatus",
71160
+ "ofType": null
71161
+ },
71162
+ "defaultValue": null,
71163
+ "isDeprecated": false,
71164
+ "deprecationReason": null
71165
+ }
71166
+ ],
71167
+ "interfaces": null,
71168
+ "enumValues": null,
71169
+ "possibleTypes": null
71170
+ },
70668
71171
  {
70669
71172
  "kind": "INPUT_OBJECT",
70670
71173
  "name": "ProductUpdateInput",
@@ -75047,7 +75550,7 @@
75047
75550
  "name": null,
75048
75551
  "ofType": {
75049
75552
  "kind": "OBJECT",
75050
- "name": "CreditLedger",
75553
+ "name": "CreditLedgerConnection",
75051
75554
  "ofType": null
75052
75555
  }
75053
75556
  },
data/lib/stigg/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stigg
4
- VERSION = "5.63.0"
4
+ VERSION = "5.65.0"
5
5
  end
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: 5.63.0
4
+ version: 5.65.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-12-07 00:00:00.000000000 Z
11
+ date: 2025-12-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient