stigg-api-client 5.57.7 → 5.62.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: 64166d759e134cbbce2977d8c768b5e4cd6e736249b5f0246f051b48056a1840
4
- data.tar.gz: c5276afec19a5c8a632fa4e76462f68a03f6828a81bd65b254af91cb8a076669
3
+ metadata.gz: f737f03196736941102282f5ee0f9ac4a56094ba6a6e20ba84dd452315e30276
4
+ data.tar.gz: 0224d524e1fce2b9fc2f54f902c6b9553ee9882b5f364b73bb3e0412c0de584a
5
5
  SHA512:
6
- metadata.gz: 44498dcd5c2b0ee7d0987c8cfaff9420a8222c431d1dd833afaddc3498f16135dbf8dce6ba607abca7480522c0576a2f4031d81b42fc8674fa87b6119350c07e
7
- data.tar.gz: ec9a115270cdf0fa84abe438079502c100434b710561bc7d8fd1cd38013f6844478d8860276f98901aadf6003f4b849a0810b1b2ee4ff35ca30844d7c0a0695a
6
+ metadata.gz: 86984223d99eb98624c834d0f4ba2481d914f02023cbcf251548cb5f9db2235e865207bba339e9f03560e3a8d04e6a199a92be66c3fad138cf8e6cef1786a5a7
7
+ data.tar.gz: d7b8cf3e9f36a93c89b7dcc6ca7a8458178e413a320e57609be408ca773a1d267ce2b1ec7fe307d145be5ceb91152d34f944fe4e16e890c2621e4d6ccba25bfc
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (5.57.7)
4
+ stigg-api-client (5.62.0)
5
5
  graphlient (>= 0.6.0, < 1.0)
6
6
  graphql-client (>= 0.19, < 1.0)
7
7
 
@@ -1737,6 +1737,30 @@ module Stigg
1737
1737
  }
1738
1738
  GRAPHQL
1739
1739
 
1740
+ CreditGrantInvoiceFragment = <<~GRAPHQL
1741
+ fragment CreditGrantInvoiceFragment on CreditGrantInvoice {
1742
+ billingId
1743
+ status
1744
+ createdAt
1745
+ dueDate
1746
+ updatedAt
1747
+ errorMessage
1748
+ requiresAction
1749
+ paymentSecret
1750
+ paymentUrl
1751
+ pdfUrl
1752
+ billingReason
1753
+ currency
1754
+ subTotal
1755
+ subTotalExcludingTax
1756
+ total
1757
+ totalExcludingTax
1758
+ tax
1759
+ amountDue
1760
+ attemptCount
1761
+ }
1762
+ GRAPHQL
1763
+
1740
1764
  CreditGrantFragment = <<~GRAPHQL
1741
1765
  fragment CreditGrantFragment on CreditGrant {
1742
1766
  grantId
@@ -1762,7 +1786,7 @@ module Stigg
1762
1786
  paymentCollection
1763
1787
  invoiceId
1764
1788
  latestInvoice {
1765
- ...SubscriptionInvoiceFragment
1789
+ ...CreditGrantInvoiceFragment
1766
1790
  }
1767
1791
  }
1768
1792
  GRAPHQL
@@ -2192,7 +2216,7 @@ module Stigg
2192
2216
  }
2193
2217
  }
2194
2218
  #{Fragment::CreditGrantFragment}
2195
- #{Fragment::SubscriptionInvoiceFragment}
2219
+ #{Fragment::CreditGrantInvoiceFragment}
2196
2220
  GRAPHQL
2197
2221
 
2198
2222
  GrantPromotionalEntitlementsGroup = <<~GRAPHQL
@@ -2244,7 +2268,7 @@ module Stigg
2244
2268
  }
2245
2269
  }
2246
2270
  #{Fragment::CreditGrantFragment}
2247
- #{Fragment::SubscriptionInvoiceFragment}
2271
+ #{Fragment::CreditGrantInvoiceFragment}
2248
2272
  GRAPHQL
2249
2273
 
2250
2274
  CreateCoupon = <<~GRAPHQL
@@ -2623,7 +2647,7 @@ module Stigg
2623
2647
  }
2624
2648
  #{Fragment::PageInfoFragment}
2625
2649
  #{Fragment::CreditGrantFragment}
2626
- #{Fragment::SubscriptionInvoiceFragment}
2650
+ #{Fragment::CreditGrantInvoiceFragment}
2627
2651
  GRAPHQL
2628
2652
 
2629
2653
  GetCreditLedger = <<~GRAPHQL
@@ -3704,6 +3704,216 @@
3704
3704
  ],
3705
3705
  "possibleTypes": null
3706
3706
  },
3707
+ {
3708
+ "kind": "OBJECT",
3709
+ "name": "AppStoreCredentials",
3710
+ "description": "AppStore integration configuration object",
3711
+ "fields": [
3712
+ {
3713
+ "name": "appAppleId",
3714
+ "description": "The Apple ID of the app",
3715
+ "args": [],
3716
+ "type": {
3717
+ "kind": "NON_NULL",
3718
+ "name": null,
3719
+ "ofType": {
3720
+ "kind": "SCALAR",
3721
+ "name": "String",
3722
+ "ofType": null
3723
+ }
3724
+ },
3725
+ "isDeprecated": false,
3726
+ "deprecationReason": null
3727
+ },
3728
+ {
3729
+ "name": "bundleId",
3730
+ "description": "The bundle ID of the app",
3731
+ "args": [],
3732
+ "type": {
3733
+ "kind": "NON_NULL",
3734
+ "name": null,
3735
+ "ofType": {
3736
+ "kind": "SCALAR",
3737
+ "name": "String",
3738
+ "ofType": null
3739
+ }
3740
+ },
3741
+ "isDeprecated": false,
3742
+ "deprecationReason": null
3743
+ },
3744
+ {
3745
+ "name": "issuerId",
3746
+ "description": "The issuer ID of key in App Store Connect",
3747
+ "args": [],
3748
+ "type": {
3749
+ "kind": "NON_NULL",
3750
+ "name": null,
3751
+ "ofType": {
3752
+ "kind": "SCALAR",
3753
+ "name": "String",
3754
+ "ofType": null
3755
+ }
3756
+ },
3757
+ "isDeprecated": false,
3758
+ "deprecationReason": null
3759
+ },
3760
+ {
3761
+ "name": "keyId",
3762
+ "description": "The key ID of key in App Store Connect",
3763
+ "args": [],
3764
+ "type": {
3765
+ "kind": "NON_NULL",
3766
+ "name": null,
3767
+ "ofType": {
3768
+ "kind": "SCALAR",
3769
+ "name": "String",
3770
+ "ofType": null
3771
+ }
3772
+ },
3773
+ "isDeprecated": false,
3774
+ "deprecationReason": null
3775
+ },
3776
+ {
3777
+ "name": "privateKey",
3778
+ "description": "The base64 encoded SHA-256 fingerprint of the private key",
3779
+ "args": [],
3780
+ "type": {
3781
+ "kind": "SCALAR",
3782
+ "name": "String",
3783
+ "ofType": null
3784
+ },
3785
+ "isDeprecated": false,
3786
+ "deprecationReason": null
3787
+ },
3788
+ {
3789
+ "name": "sandboxEnvironment",
3790
+ "description": "Whether the app is in sandbox environment",
3791
+ "args": [],
3792
+ "type": {
3793
+ "kind": "NON_NULL",
3794
+ "name": null,
3795
+ "ofType": {
3796
+ "kind": "SCALAR",
3797
+ "name": "Boolean",
3798
+ "ofType": null
3799
+ }
3800
+ },
3801
+ "isDeprecated": false,
3802
+ "deprecationReason": null
3803
+ }
3804
+ ],
3805
+ "inputFields": null,
3806
+ "interfaces": [],
3807
+ "enumValues": null,
3808
+ "possibleTypes": null
3809
+ },
3810
+ {
3811
+ "kind": "INPUT_OBJECT",
3812
+ "name": "AppStoreCredentialsInput",
3813
+ "description": "Input configuration for AppStore integration",
3814
+ "fields": null,
3815
+ "inputFields": [
3816
+ {
3817
+ "name": "appAppleId",
3818
+ "description": "The Apple ID of the app",
3819
+ "type": {
3820
+ "kind": "NON_NULL",
3821
+ "name": null,
3822
+ "ofType": {
3823
+ "kind": "SCALAR",
3824
+ "name": "String",
3825
+ "ofType": null
3826
+ }
3827
+ },
3828
+ "defaultValue": null,
3829
+ "isDeprecated": false,
3830
+ "deprecationReason": null
3831
+ },
3832
+ {
3833
+ "name": "bundleId",
3834
+ "description": "The bundle ID of the app",
3835
+ "type": {
3836
+ "kind": "NON_NULL",
3837
+ "name": null,
3838
+ "ofType": {
3839
+ "kind": "SCALAR",
3840
+ "name": "String",
3841
+ "ofType": null
3842
+ }
3843
+ },
3844
+ "defaultValue": null,
3845
+ "isDeprecated": false,
3846
+ "deprecationReason": null
3847
+ },
3848
+ {
3849
+ "name": "issuerId",
3850
+ "description": "The issuer ID of key in App Store Connect",
3851
+ "type": {
3852
+ "kind": "NON_NULL",
3853
+ "name": null,
3854
+ "ofType": {
3855
+ "kind": "SCALAR",
3856
+ "name": "String",
3857
+ "ofType": null
3858
+ }
3859
+ },
3860
+ "defaultValue": null,
3861
+ "isDeprecated": false,
3862
+ "deprecationReason": null
3863
+ },
3864
+ {
3865
+ "name": "keyId",
3866
+ "description": "The key ID of key in App Store Connect",
3867
+ "type": {
3868
+ "kind": "NON_NULL",
3869
+ "name": null,
3870
+ "ofType": {
3871
+ "kind": "SCALAR",
3872
+ "name": "String",
3873
+ "ofType": null
3874
+ }
3875
+ },
3876
+ "defaultValue": null,
3877
+ "isDeprecated": false,
3878
+ "deprecationReason": null
3879
+ },
3880
+ {
3881
+ "name": "privateKey",
3882
+ "description": "The private key in App Store Connect (.p8 file content)",
3883
+ "type": {
3884
+ "kind": "NON_NULL",
3885
+ "name": null,
3886
+ "ofType": {
3887
+ "kind": "SCALAR",
3888
+ "name": "String",
3889
+ "ofType": null
3890
+ }
3891
+ },
3892
+ "defaultValue": null,
3893
+ "isDeprecated": false,
3894
+ "deprecationReason": null
3895
+ },
3896
+ {
3897
+ "name": "sandboxEnvironment",
3898
+ "description": "Whether the app is in sandbox environment",
3899
+ "type": {
3900
+ "kind": "NON_NULL",
3901
+ "name": null,
3902
+ "ofType": {
3903
+ "kind": "SCALAR",
3904
+ "name": "Boolean",
3905
+ "ofType": null
3906
+ }
3907
+ },
3908
+ "defaultValue": null,
3909
+ "isDeprecated": false,
3910
+ "deprecationReason": null
3911
+ }
3912
+ ],
3913
+ "interfaces": null,
3914
+ "enumValues": null,
3915
+ "possibleTypes": null
3916
+ },
3707
3917
  {
3708
3918
  "kind": "OBJECT",
3709
3919
  "name": "ApplySubscription",
@@ -11340,6 +11550,18 @@
11340
11550
  "description": "Create integration input",
11341
11551
  "fields": null,
11342
11552
  "inputFields": [
11553
+ {
11554
+ "name": "appStoreCredentials",
11555
+ "description": "AppStore integration configuration",
11556
+ "type": {
11557
+ "kind": "INPUT_OBJECT",
11558
+ "name": "AppStoreCredentialsInput",
11559
+ "ofType": null
11560
+ },
11561
+ "defaultValue": null,
11562
+ "isDeprecated": false,
11563
+ "deprecationReason": null
11564
+ },
11343
11565
  {
11344
11566
  "name": "auth0Credentials",
11345
11567
  "description": "Auth0 integration configuration",
@@ -12226,6 +12448,11 @@
12226
12448
  "interfaces": null,
12227
12449
  "enumValues": null,
12228
12450
  "possibleTypes": [
12451
+ {
12452
+ "kind": "OBJECT",
12453
+ "name": "AppStoreCredentials",
12454
+ "ofType": null
12455
+ },
12229
12456
  {
12230
12457
  "kind": "OBJECT",
12231
12458
  "name": "Auth0Credentials",
@@ -12928,7 +13155,7 @@
12928
13155
  "args": [],
12929
13156
  "type": {
12930
13157
  "kind": "OBJECT",
12931
- "name": "SubscriptionInvoice",
13158
+ "name": "CreditGrantInvoice",
12932
13159
  "ofType": null
12933
13160
  },
12934
13161
  "isDeprecated": false,
@@ -13521,6 +13748,367 @@
13521
13748
  "enumValues": null,
13522
13749
  "possibleTypes": null
13523
13750
  },
13751
+ {
13752
+ "kind": "OBJECT",
13753
+ "name": "CreditGrantInvoice",
13754
+ "description": null,
13755
+ "fields": [
13756
+ {
13757
+ "name": "amountDue",
13758
+ "description": null,
13759
+ "args": [],
13760
+ "type": {
13761
+ "kind": "SCALAR",
13762
+ "name": "Float",
13763
+ "ofType": null
13764
+ },
13765
+ "isDeprecated": false,
13766
+ "deprecationReason": null
13767
+ },
13768
+ {
13769
+ "name": "appliedBalance",
13770
+ "description": null,
13771
+ "args": [],
13772
+ "type": {
13773
+ "kind": "SCALAR",
13774
+ "name": "Float",
13775
+ "ofType": null
13776
+ },
13777
+ "isDeprecated": false,
13778
+ "deprecationReason": null
13779
+ },
13780
+ {
13781
+ "name": "attemptCount",
13782
+ "description": "Number of payment attempts made for this invoice, from the perspective of the payment retry schedule.",
13783
+ "args": [],
13784
+ "type": {
13785
+ "kind": "SCALAR",
13786
+ "name": "Float",
13787
+ "ofType": null
13788
+ },
13789
+ "isDeprecated": false,
13790
+ "deprecationReason": null
13791
+ },
13792
+ {
13793
+ "name": "billingId",
13794
+ "description": null,
13795
+ "args": [],
13796
+ "type": {
13797
+ "kind": "NON_NULL",
13798
+ "name": null,
13799
+ "ofType": {
13800
+ "kind": "SCALAR",
13801
+ "name": "String",
13802
+ "ofType": null
13803
+ }
13804
+ },
13805
+ "isDeprecated": false,
13806
+ "deprecationReason": null
13807
+ },
13808
+ {
13809
+ "name": "billingReason",
13810
+ "description": "The billing reason of a credit grant invoice",
13811
+ "args": [],
13812
+ "type": {
13813
+ "kind": "ENUM",
13814
+ "name": "CreditGrantInvoiceBillingReason",
13815
+ "ofType": null
13816
+ },
13817
+ "isDeprecated": false,
13818
+ "deprecationReason": null
13819
+ },
13820
+ {
13821
+ "name": "createdAt",
13822
+ "description": null,
13823
+ "args": [],
13824
+ "type": {
13825
+ "kind": "NON_NULL",
13826
+ "name": null,
13827
+ "ofType": {
13828
+ "kind": "SCALAR",
13829
+ "name": "DateTime",
13830
+ "ofType": null
13831
+ }
13832
+ },
13833
+ "isDeprecated": false,
13834
+ "deprecationReason": null
13835
+ },
13836
+ {
13837
+ "name": "currency",
13838
+ "description": null,
13839
+ "args": [],
13840
+ "type": {
13841
+ "kind": "SCALAR",
13842
+ "name": "String",
13843
+ "ofType": null
13844
+ },
13845
+ "isDeprecated": false,
13846
+ "deprecationReason": null
13847
+ },
13848
+ {
13849
+ "name": "dueDate",
13850
+ "description": null,
13851
+ "args": [],
13852
+ "type": {
13853
+ "kind": "SCALAR",
13854
+ "name": "DateTime",
13855
+ "ofType": null
13856
+ },
13857
+ "isDeprecated": false,
13858
+ "deprecationReason": null
13859
+ },
13860
+ {
13861
+ "name": "endingBalance",
13862
+ "description": null,
13863
+ "args": [],
13864
+ "type": {
13865
+ "kind": "SCALAR",
13866
+ "name": "Float",
13867
+ "ofType": null
13868
+ },
13869
+ "isDeprecated": false,
13870
+ "deprecationReason": null
13871
+ },
13872
+ {
13873
+ "name": "errorMessage",
13874
+ "description": null,
13875
+ "args": [],
13876
+ "type": {
13877
+ "kind": "SCALAR",
13878
+ "name": "String",
13879
+ "ofType": null
13880
+ },
13881
+ "isDeprecated": false,
13882
+ "deprecationReason": null
13883
+ },
13884
+ {
13885
+ "name": "lines",
13886
+ "description": null,
13887
+ "args": [],
13888
+ "type": {
13889
+ "kind": "LIST",
13890
+ "name": null,
13891
+ "ofType": {
13892
+ "kind": "NON_NULL",
13893
+ "name": null,
13894
+ "ofType": {
13895
+ "kind": "OBJECT",
13896
+ "name": "InvoiceLine",
13897
+ "ofType": null
13898
+ }
13899
+ }
13900
+ },
13901
+ "isDeprecated": false,
13902
+ "deprecationReason": null
13903
+ },
13904
+ {
13905
+ "name": "paymentSecret",
13906
+ "description": null,
13907
+ "args": [],
13908
+ "type": {
13909
+ "kind": "SCALAR",
13910
+ "name": "String",
13911
+ "ofType": null
13912
+ },
13913
+ "isDeprecated": false,
13914
+ "deprecationReason": null
13915
+ },
13916
+ {
13917
+ "name": "paymentUrl",
13918
+ "description": null,
13919
+ "args": [],
13920
+ "type": {
13921
+ "kind": "SCALAR",
13922
+ "name": "String",
13923
+ "ofType": null
13924
+ },
13925
+ "isDeprecated": false,
13926
+ "deprecationReason": null
13927
+ },
13928
+ {
13929
+ "name": "pdfUrl",
13930
+ "description": null,
13931
+ "args": [],
13932
+ "type": {
13933
+ "kind": "SCALAR",
13934
+ "name": "String",
13935
+ "ofType": null
13936
+ },
13937
+ "isDeprecated": false,
13938
+ "deprecationReason": null
13939
+ },
13940
+ {
13941
+ "name": "requiresAction",
13942
+ "description": null,
13943
+ "args": [],
13944
+ "type": {
13945
+ "kind": "NON_NULL",
13946
+ "name": null,
13947
+ "ofType": {
13948
+ "kind": "SCALAR",
13949
+ "name": "Boolean",
13950
+ "ofType": null
13951
+ }
13952
+ },
13953
+ "isDeprecated": false,
13954
+ "deprecationReason": null
13955
+ },
13956
+ {
13957
+ "name": "startingBalance",
13958
+ "description": null,
13959
+ "args": [],
13960
+ "type": {
13961
+ "kind": "SCALAR",
13962
+ "name": "Float",
13963
+ "ofType": null
13964
+ },
13965
+ "isDeprecated": false,
13966
+ "deprecationReason": null
13967
+ },
13968
+ {
13969
+ "name": "status",
13970
+ "description": "The status of the credit grant",
13971
+ "args": [],
13972
+ "type": {
13973
+ "kind": "NON_NULL",
13974
+ "name": null,
13975
+ "ofType": {
13976
+ "kind": "ENUM",
13977
+ "name": "CreditGrantInvoiceStatus",
13978
+ "ofType": null
13979
+ }
13980
+ },
13981
+ "isDeprecated": false,
13982
+ "deprecationReason": null
13983
+ },
13984
+ {
13985
+ "name": "subTotal",
13986
+ "description": null,
13987
+ "args": [],
13988
+ "type": {
13989
+ "kind": "SCALAR",
13990
+ "name": "Float",
13991
+ "ofType": null
13992
+ },
13993
+ "isDeprecated": false,
13994
+ "deprecationReason": null
13995
+ },
13996
+ {
13997
+ "name": "subTotalExcludingTax",
13998
+ "description": null,
13999
+ "args": [],
14000
+ "type": {
14001
+ "kind": "SCALAR",
14002
+ "name": "Float",
14003
+ "ofType": null
14004
+ },
14005
+ "isDeprecated": false,
14006
+ "deprecationReason": null
14007
+ },
14008
+ {
14009
+ "name": "tax",
14010
+ "description": null,
14011
+ "args": [],
14012
+ "type": {
14013
+ "kind": "SCALAR",
14014
+ "name": "Float",
14015
+ "ofType": null
14016
+ },
14017
+ "isDeprecated": false,
14018
+ "deprecationReason": null
14019
+ },
14020
+ {
14021
+ "name": "total",
14022
+ "description": null,
14023
+ "args": [],
14024
+ "type": {
14025
+ "kind": "SCALAR",
14026
+ "name": "Float",
14027
+ "ofType": null
14028
+ },
14029
+ "isDeprecated": false,
14030
+ "deprecationReason": null
14031
+ },
14032
+ {
14033
+ "name": "totalExcludingTax",
14034
+ "description": null,
14035
+ "args": [],
14036
+ "type": {
14037
+ "kind": "SCALAR",
14038
+ "name": "Float",
14039
+ "ofType": null
14040
+ },
14041
+ "isDeprecated": false,
14042
+ "deprecationReason": null
14043
+ },
14044
+ {
14045
+ "name": "updatedAt",
14046
+ "description": null,
14047
+ "args": [],
14048
+ "type": {
14049
+ "kind": "NON_NULL",
14050
+ "name": null,
14051
+ "ofType": {
14052
+ "kind": "SCALAR",
14053
+ "name": "DateTime",
14054
+ "ofType": null
14055
+ }
14056
+ },
14057
+ "isDeprecated": false,
14058
+ "deprecationReason": null
14059
+ }
14060
+ ],
14061
+ "inputFields": null,
14062
+ "interfaces": [],
14063
+ "enumValues": null,
14064
+ "possibleTypes": null
14065
+ },
14066
+ {
14067
+ "kind": "ENUM",
14068
+ "name": "CreditGrantInvoiceBillingReason",
14069
+ "description": "The billing reason of a credit grant invoice",
14070
+ "fields": null,
14071
+ "inputFields": null,
14072
+ "interfaces": null,
14073
+ "enumValues": [
14074
+ {
14075
+ "name": "MANUAL",
14076
+ "description": "An invoice was created manually.",
14077
+ "isDeprecated": false,
14078
+ "deprecationReason": null
14079
+ },
14080
+ {
14081
+ "name": "OTHER",
14082
+ "description": "An invoice was created for another reason.",
14083
+ "isDeprecated": false,
14084
+ "deprecationReason": null
14085
+ }
14086
+ ],
14087
+ "possibleTypes": null
14088
+ },
14089
+ {
14090
+ "kind": "ENUM",
14091
+ "name": "CreditGrantInvoiceStatus",
14092
+ "description": "The status of a credit grant invoice",
14093
+ "fields": null,
14094
+ "inputFields": null,
14095
+ "interfaces": null,
14096
+ "enumValues": [
14097
+ {
14098
+ "name": "OPEN",
14099
+ "description": "Invoice is open and waiting for payment",
14100
+ "isDeprecated": false,
14101
+ "deprecationReason": null
14102
+ },
14103
+ {
14104
+ "name": "PAID",
14105
+ "description": "Invoice is paid",
14106
+ "isDeprecated": false,
14107
+ "deprecationReason": null
14108
+ }
14109
+ ],
14110
+ "possibleTypes": null
14111
+ },
13524
14112
  {
13525
14113
  "kind": "OBJECT",
13526
14114
  "name": "CreditGrantPreview",
@@ -13650,31 +14238,31 @@
13650
14238
  "enumValues": [
13651
14239
  {
13652
14240
  "name": "ACTIVE",
13653
- "description": null,
14241
+ "description": "Credit grant is active",
13654
14242
  "isDeprecated": false,
13655
14243
  "deprecationReason": null
13656
14244
  },
13657
14245
  {
13658
14246
  "name": "EXPIRED",
13659
- "description": null,
14247
+ "description": "Credit grant is expired",
13660
14248
  "isDeprecated": false,
13661
14249
  "deprecationReason": null
13662
14250
  },
13663
14251
  {
13664
14252
  "name": "PAYMENT_PENDING",
13665
- "description": null,
14253
+ "description": "Payment is pending",
13666
14254
  "isDeprecated": false,
13667
14255
  "deprecationReason": null
13668
14256
  },
13669
14257
  {
13670
14258
  "name": "SCHEDULED",
13671
- "description": null,
14259
+ "description": "Credit grant is scheduled",
13672
14260
  "isDeprecated": false,
13673
14261
  "deprecationReason": null
13674
14262
  },
13675
14263
  {
13676
14264
  "name": "VOIDED",
13677
- "description": null,
14265
+ "description": "Credit grant is voided",
13678
14266
  "isDeprecated": false,
13679
14267
  "deprecationReason": null
13680
14268
  }
@@ -100922,6 +101510,12 @@
100922
101510
  "inputFields": null,
100923
101511
  "interfaces": null,
100924
101512
  "enumValues": [
101513
+ {
101514
+ "name": "APP_STORE",
101515
+ "description": "AppStore integration vendor identifier",
101516
+ "isDeprecated": false,
101517
+ "deprecationReason": null
101518
+ },
100925
101519
  {
100926
101520
  "name": "AUTH0",
100927
101521
  "description": "Auth0 integration vendor identifier",
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.57.7"
4
+ VERSION = "5.62.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.57.7
4
+ version: 5.62.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-02 00:00:00.000000000 Z
11
+ date: 2025-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient