stigg-api-client 5.189.2 → 5.192.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: 6bf67d0e88ba610f9a67b3e5852fff706dd4039b13d75bd2e664d430ac50c91e
4
- data.tar.gz: e78deb484bc27e50de38c22693d83b10dc8443ba68a1808b33fb870285e49bd4
3
+ metadata.gz: c1ddaadaae0f7c90ed66e0e6cbe46c1656405ac2f24929a57bbcccdf8e8c436f
4
+ data.tar.gz: ff7ceebb74df99fe9cef626ced56f8ffeb84a7c423eea6608d83b3f66ebbc899
5
5
  SHA512:
6
- metadata.gz: 50e34bf7433a711b1db0d1a03a1076874621f2a866eaba539bab0fa85314d66f86022fd32d0ee4376aaf3a308c4f6dc413d0b51abbaa4d7ac5e0f3996167d3f4
7
- data.tar.gz: 393f6b1e76a75524a11e163723865bdb82a9409f1518143d3ac9938a4c35d7874a201cf0542eab3cdbae18df99f7848872144c68c9ad857d3d8fa441af2fb725
6
+ metadata.gz: a81fb283d2d5b4d7a6d0b294bd17c869ec11a168535fc0de469c5ea2a4081538a276c94c50de1eb575a5e2f3ad2f33f2b4aa6a7d8acacd0cd1c596f5b2433d6a
7
+ data.tar.gz: de3c141e1e4b9f2baf39aec8b4da55624cb605f5f37d41ae5aefd40d0fe1155649e253fab86b0b277d0ce935619fd964d307704a74c34f1774d6a47826488db4
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (5.189.2)
4
+ stigg-api-client (5.192.0)
5
5
  graphlient (>= 0.6.0, < 1.0)
6
6
  graphql-client (>= 0.19, < 1.0)
7
7
 
@@ -3616,6 +3616,22 @@
3616
3616
  "name": "ApiKey",
3617
3617
  "description": "API key",
3618
3618
  "fields": [
3619
+ {
3620
+ "name": "createdAt",
3621
+ "description": "The creation date of the API key",
3622
+ "args": [],
3623
+ "type": {
3624
+ "kind": "NON_NULL",
3625
+ "name": null,
3626
+ "ofType": {
3627
+ "kind": "SCALAR",
3628
+ "name": "DateTime",
3629
+ "ofType": null
3630
+ }
3631
+ },
3632
+ "isDeprecated": false,
3633
+ "deprecationReason": null
3634
+ },
3619
3635
  {
3620
3636
  "name": "description",
3621
3637
  "description": "The description of the API key",
@@ -3722,6 +3738,163 @@
3722
3738
  "enumValues": null,
3723
3739
  "possibleTypes": null
3724
3740
  },
3741
+ {
3742
+ "kind": "OBJECT",
3743
+ "name": "ApiKeyConnection",
3744
+ "description": null,
3745
+ "fields": [
3746
+ {
3747
+ "name": "edges",
3748
+ "description": "Edges in the current page",
3749
+ "args": [],
3750
+ "type": {
3751
+ "kind": "NON_NULL",
3752
+ "name": null,
3753
+ "ofType": {
3754
+ "kind": "LIST",
3755
+ "name": null,
3756
+ "ofType": {
3757
+ "kind": "NON_NULL",
3758
+ "name": null,
3759
+ "ofType": {
3760
+ "kind": "OBJECT",
3761
+ "name": "ApiKeyEdge",
3762
+ "ofType": null
3763
+ }
3764
+ }
3765
+ }
3766
+ },
3767
+ "isDeprecated": false,
3768
+ "deprecationReason": null
3769
+ },
3770
+ {
3771
+ "name": "pageInfo",
3772
+ "description": "Pagination information",
3773
+ "args": [],
3774
+ "type": {
3775
+ "kind": "NON_NULL",
3776
+ "name": null,
3777
+ "ofType": {
3778
+ "kind": "OBJECT",
3779
+ "name": "PageInfo",
3780
+ "ofType": null
3781
+ }
3782
+ },
3783
+ "isDeprecated": false,
3784
+ "deprecationReason": null
3785
+ },
3786
+ {
3787
+ "name": "totalCount",
3788
+ "description": "Total number of items matching the filter",
3789
+ "args": [],
3790
+ "type": {
3791
+ "kind": "NON_NULL",
3792
+ "name": null,
3793
+ "ofType": {
3794
+ "kind": "SCALAR",
3795
+ "name": "Int",
3796
+ "ofType": null
3797
+ }
3798
+ },
3799
+ "isDeprecated": false,
3800
+ "deprecationReason": null
3801
+ }
3802
+ ],
3803
+ "inputFields": null,
3804
+ "interfaces": [],
3805
+ "enumValues": null,
3806
+ "possibleTypes": null
3807
+ },
3808
+ {
3809
+ "kind": "OBJECT",
3810
+ "name": "ApiKeyEdge",
3811
+ "description": null,
3812
+ "fields": [
3813
+ {
3814
+ "name": "cursor",
3815
+ "description": "An opaque cursor for this item",
3816
+ "args": [],
3817
+ "type": {
3818
+ "kind": "NON_NULL",
3819
+ "name": null,
3820
+ "ofType": {
3821
+ "kind": "SCALAR",
3822
+ "name": "String",
3823
+ "ofType": null
3824
+ }
3825
+ },
3826
+ "isDeprecated": false,
3827
+ "deprecationReason": null
3828
+ },
3829
+ {
3830
+ "name": "node",
3831
+ "description": "The item at the edge",
3832
+ "args": [],
3833
+ "type": {
3834
+ "kind": "NON_NULL",
3835
+ "name": null,
3836
+ "ofType": {
3837
+ "kind": "OBJECT",
3838
+ "name": "ApiKey",
3839
+ "ofType": null
3840
+ }
3841
+ },
3842
+ "isDeprecated": false,
3843
+ "deprecationReason": null
3844
+ }
3845
+ ],
3846
+ "inputFields": null,
3847
+ "interfaces": [],
3848
+ "enumValues": null,
3849
+ "possibleTypes": null
3850
+ },
3851
+ {
3852
+ "kind": "INPUT_OBJECT",
3853
+ "name": "ApiKeyExpirationFilterInput",
3854
+ "description": null,
3855
+ "fields": null,
3856
+ "inputFields": [
3857
+ {
3858
+ "name": "expiresAfter",
3859
+ "description": "Include keys expiring after this date (applies only keys with expiration)",
3860
+ "type": {
3861
+ "kind": "SCALAR",
3862
+ "name": "DateTime",
3863
+ "ofType": null
3864
+ },
3865
+ "defaultValue": null,
3866
+ "isDeprecated": false,
3867
+ "deprecationReason": null
3868
+ },
3869
+ {
3870
+ "name": "expiresBefore",
3871
+ "description": "Include keys expiring before this date (applies only keys with expiration)",
3872
+ "type": {
3873
+ "kind": "SCALAR",
3874
+ "name": "DateTime",
3875
+ "ofType": null
3876
+ },
3877
+ "defaultValue": null,
3878
+ "isDeprecated": false,
3879
+ "deprecationReason": null
3880
+ },
3881
+ {
3882
+ "name": "includeNeverExpires",
3883
+ "description": "Include keys with no expiration date (defaults to true)",
3884
+ "type": {
3885
+ "kind": "SCALAR",
3886
+ "name": "Boolean",
3887
+ "ofType": null
3888
+ },
3889
+ "defaultValue": null,
3890
+ "isDeprecated": false,
3891
+ "deprecationReason": null
3892
+ }
3893
+ ],
3894
+ "interfaces": null,
3895
+ "enumValues": null,
3896
+ "possibleTypes": null
3897
+ },
3725
3898
  {
3726
3899
  "kind": "OBJECT",
3727
3900
  "name": "ApiKeyExpired",
@@ -41365,6 +41538,85 @@
41365
41538
  "enumValues": null,
41366
41539
  "possibleTypes": null
41367
41540
  },
41541
+ {
41542
+ "kind": "INPUT_OBJECT",
41543
+ "name": "GetApiKeysInput",
41544
+ "description": "Input for fetching API keys with pagination",
41545
+ "fields": null,
41546
+ "inputFields": [
41547
+ {
41548
+ "name": "displayNameContains",
41549
+ "description": "Search API keys by display name, works with partial matching",
41550
+ "type": {
41551
+ "kind": "SCALAR",
41552
+ "name": "String",
41553
+ "ofType": null
41554
+ },
41555
+ "defaultValue": null,
41556
+ "isDeprecated": false,
41557
+ "deprecationReason": null
41558
+ },
41559
+ {
41560
+ "name": "environmentId",
41561
+ "description": "The unique identifier for the environment",
41562
+ "type": {
41563
+ "kind": "SCALAR",
41564
+ "name": "UUID",
41565
+ "ofType": null
41566
+ },
41567
+ "defaultValue": null,
41568
+ "isDeprecated": false,
41569
+ "deprecationReason": null
41570
+ },
41571
+ {
41572
+ "name": "expirationFilter",
41573
+ "description": "Filter API keys by expiration date (defaults to non expired keys)",
41574
+ "type": {
41575
+ "kind": "INPUT_OBJECT",
41576
+ "name": "ApiKeyExpirationFilterInput",
41577
+ "ofType": null
41578
+ },
41579
+ "defaultValue": null,
41580
+ "isDeprecated": false,
41581
+ "deprecationReason": null
41582
+ },
41583
+ {
41584
+ "name": "keyTypes",
41585
+ "description": "Filter API keys by types",
41586
+ "type": {
41587
+ "kind": "LIST",
41588
+ "name": null,
41589
+ "ofType": {
41590
+ "kind": "NON_NULL",
41591
+ "name": null,
41592
+ "ofType": {
41593
+ "kind": "ENUM",
41594
+ "name": "ApiKeyType",
41595
+ "ofType": null
41596
+ }
41597
+ }
41598
+ },
41599
+ "defaultValue": null,
41600
+ "isDeprecated": false,
41601
+ "deprecationReason": null
41602
+ },
41603
+ {
41604
+ "name": "paging",
41605
+ "description": "Pagination options",
41606
+ "type": {
41607
+ "kind": "INPUT_OBJECT",
41608
+ "name": "CursorPaging",
41609
+ "ofType": null
41610
+ },
41611
+ "defaultValue": null,
41612
+ "isDeprecated": false,
41613
+ "deprecationReason": null
41614
+ }
41615
+ ],
41616
+ "interfaces": null,
41617
+ "enumValues": null,
41618
+ "possibleTypes": null
41619
+ },
41368
41620
  {
41369
41621
  "kind": "INPUT_OBJECT",
41370
41622
  "name": "GetAuth0ApplicationsInput",
@@ -80772,6 +81024,39 @@
80772
81024
  "isDeprecated": false,
80773
81025
  "deprecationReason": null
80774
81026
  },
81027
+ {
81028
+ "name": "apiKeys",
81029
+ "description": "Retrieve paginated list of API keys",
81030
+ "args": [
81031
+ {
81032
+ "name": "input",
81033
+ "description": null,
81034
+ "type": {
81035
+ "kind": "NON_NULL",
81036
+ "name": null,
81037
+ "ofType": {
81038
+ "kind": "INPUT_OBJECT",
81039
+ "name": "GetApiKeysInput",
81040
+ "ofType": null
81041
+ }
81042
+ },
81043
+ "defaultValue": null,
81044
+ "isDeprecated": false,
81045
+ "deprecationReason": null
81046
+ }
81047
+ ],
81048
+ "type": {
81049
+ "kind": "NON_NULL",
81050
+ "name": null,
81051
+ "ofType": {
81052
+ "kind": "OBJECT",
81053
+ "name": "ApiKeyConnection",
81054
+ "ofType": null
81055
+ }
81056
+ },
81057
+ "isDeprecated": false,
81058
+ "deprecationReason": null
81059
+ },
80775
81060
  {
80776
81061
  "name": "billingProducts",
80777
81062
  "description": "List billing products",
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.189.2"
4
+ VERSION = "5.192.0"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stigg-api-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.189.2
4
+ version: 5.192.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stigg