stigg-api-client 1.48.7 → 1.51.2

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: 99289857055dc6377af69c6449e8a5a67f99e64b5f01e65a40cb90c7d17cf083
4
- data.tar.gz: 0d551bc1704b5934bfa9a0aae1b7b1b9b18c263b79094dcd156d7e7dcd4b4a79
3
+ metadata.gz: aa2ace0a3934dcacfff76297f96840723deb0a01948124812558a491e1fa5bfc
4
+ data.tar.gz: 757d3fa5132b3a7c4aacb432be5b246847b9adee1ae5bd1b0d55d20ecad1ab60
5
5
  SHA512:
6
- metadata.gz: 5a6166de89893f76e687aea7ffbf6f13abeed44ec0b7dc5638290df61f6463518ff57043dfd2973eb7d0404d18b50a42d06f8ec0cbe265412345896c447390c1
7
- data.tar.gz: 983c4181d383e6e8adab037a53d2608a6f87e2deec848e150d1bedfa46c50fcc5ae4001b7f26cd8a2da57f24463b4d5f5ba94cc13153f451f802505ccf73f5f3
6
+ metadata.gz: 6cd99e4a7c627f84bd3c66b1a45ba1edb710b76161896bff550c0a78680666e3b7563074677798b2cd1088898bee8077a6c1bb03222f50779d738d50943c0470
7
+ data.tar.gz: 46baef8dbb4db381a3968344048fdb13a0887395c50fd505f2afd0279fa81ecc90428e554da7e83a1bf09cf33ed29d17d0bc4aa491bb26f34122dee28f2474bb
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- stigg-api-client (1.48.7)
4
+ stigg-api-client (1.51.2)
5
5
  graphlient (~> 0.7.0)
6
6
  graphql-client (~> 0.19)
7
7
 
@@ -3083,6 +3083,12 @@
3083
3083
  "isDeprecated": false,
3084
3084
  "deprecationReason": null
3085
3085
  },
3086
+ {
3087
+ "name": "SALESFORCE",
3088
+ "description": null,
3089
+ "isDeprecated": false,
3090
+ "deprecationReason": null
3091
+ },
3086
3092
  {
3087
3093
  "name": "SERVER",
3088
3094
  "description": null,
@@ -3309,6 +3315,18 @@
3309
3315
  "isDeprecated": false,
3310
3316
  "deprecationReason": null
3311
3317
  },
3318
+ {
3319
+ "name": "scheduleStrategy",
3320
+ "description": null,
3321
+ "type": {
3322
+ "kind": "ENUM",
3323
+ "name": "ScheduleStrategy",
3324
+ "ofType": null
3325
+ },
3326
+ "defaultValue": null,
3327
+ "isDeprecated": false,
3328
+ "deprecationReason": null
3329
+ },
3312
3330
  {
3313
3331
  "name": "skipTrial",
3314
3332
  "description": null,
@@ -8405,6 +8423,18 @@
8405
8423
  "isDeprecated": false,
8406
8424
  "deprecationReason": null
8407
8425
  },
8426
+ {
8427
+ "name": "salesforceCredentials",
8428
+ "description": null,
8429
+ "type": {
8430
+ "kind": "INPUT_OBJECT",
8431
+ "name": "SalesforceCredentialsInput",
8432
+ "ofType": null
8433
+ },
8434
+ "defaultValue": null,
8435
+ "isDeprecated": false,
8436
+ "deprecationReason": null
8437
+ },
8408
8438
  {
8409
8439
  "name": "snowflakeCredentials",
8410
8440
  "description": null,
@@ -8892,6 +8922,11 @@
8892
8922
  "name": "HubspotCredentials",
8893
8923
  "ofType": null
8894
8924
  },
8925
+ {
8926
+ "kind": "OBJECT",
8927
+ "name": "SalesforceCredentials",
8928
+ "ofType": null
8929
+ },
8895
8930
  {
8896
8931
  "kind": "OBJECT",
8897
8932
  "name": "SnowflakeCredentials",
@@ -21913,6 +21948,12 @@
21913
21948
  "isDeprecated": false,
21914
21949
  "deprecationReason": null
21915
21950
  },
21951
+ {
21952
+ "name": "BillingIntegrationMissing",
21953
+ "description": null,
21954
+ "isDeprecated": false,
21955
+ "deprecationReason": null
21956
+ },
21916
21957
  {
21917
21958
  "name": "BillingPeriodMissingError",
21918
21959
  "description": null,
@@ -44199,6 +44240,122 @@
44199
44240
  "enumValues": null,
44200
44241
  "possibleTypes": null
44201
44242
  },
44243
+ {
44244
+ "kind": "ENUM",
44245
+ "name": "PlanChangeType",
44246
+ "description": "Type of the change between two plans of the same subscription",
44247
+ "fields": null,
44248
+ "inputFields": null,
44249
+ "interfaces": null,
44250
+ "enumValues": [
44251
+ {
44252
+ "name": "DOWNGRADE",
44253
+ "description": "Subscription downgrade to lower plan",
44254
+ "isDeprecated": false,
44255
+ "deprecationReason": null
44256
+ },
44257
+ {
44258
+ "name": "NONE",
44259
+ "description": "Subscription remains on the same plan",
44260
+ "isDeprecated": false,
44261
+ "deprecationReason": null
44262
+ },
44263
+ {
44264
+ "name": "UPGRADE",
44265
+ "description": "Subscription upgrade to higher plan",
44266
+ "isDeprecated": false,
44267
+ "deprecationReason": null
44268
+ }
44269
+ ],
44270
+ "possibleTypes": null
44271
+ },
44272
+ {
44273
+ "kind": "OBJECT",
44274
+ "name": "PlanChangeVariables",
44275
+ "description": null,
44276
+ "fields": [
44277
+ {
44278
+ "name": "addonRefIds",
44279
+ "description": null,
44280
+ "args": [],
44281
+ "type": {
44282
+ "kind": "SCALAR",
44283
+ "name": "String",
44284
+ "ofType": null
44285
+ },
44286
+ "isDeprecated": false,
44287
+ "deprecationReason": null
44288
+ },
44289
+ {
44290
+ "name": "billableFeatures",
44291
+ "description": null,
44292
+ "args": [],
44293
+ "type": {
44294
+ "kind": "LIST",
44295
+ "name": null,
44296
+ "ofType": {
44297
+ "kind": "NON_NULL",
44298
+ "name": null,
44299
+ "ofType": {
44300
+ "kind": "OBJECT",
44301
+ "name": "BillableFeature",
44302
+ "ofType": null
44303
+ }
44304
+ }
44305
+ },
44306
+ "isDeprecated": false,
44307
+ "deprecationReason": null
44308
+ },
44309
+ {
44310
+ "name": "billingPeriod",
44311
+ "description": null,
44312
+ "args": [],
44313
+ "type": {
44314
+ "kind": "ENUM",
44315
+ "name": "BillingPeriod",
44316
+ "ofType": null
44317
+ },
44318
+ "isDeprecated": false,
44319
+ "deprecationReason": null
44320
+ },
44321
+ {
44322
+ "name": "changeType",
44323
+ "description": null,
44324
+ "args": [],
44325
+ "type": {
44326
+ "kind": "NON_NULL",
44327
+ "name": null,
44328
+ "ofType": {
44329
+ "kind": "ENUM",
44330
+ "name": "PlanChangeType",
44331
+ "ofType": null
44332
+ }
44333
+ },
44334
+ "isDeprecated": false,
44335
+ "deprecationReason": null
44336
+ },
44337
+ {
44338
+ "name": "planRefId",
44339
+ "description": null,
44340
+ "args": [],
44341
+ "type": {
44342
+ "kind": "NON_NULL",
44343
+ "name": null,
44344
+ "ofType": {
44345
+ "kind": "SCALAR",
44346
+ "name": "String",
44347
+ "ofType": null
44348
+ }
44349
+ },
44350
+ "isDeprecated": false,
44351
+ "deprecationReason": null
44352
+ }
44353
+ ],
44354
+ "inputFields": null,
44355
+ "interfaces": [],
44356
+ "enumValues": null,
44357
+ "possibleTypes": null
44358
+ },
44202
44359
  {
44203
44360
  "kind": "OBJECT",
44204
44361
  "name": "PlanCompatibleAddonChange",
@@ -46120,6 +46277,18 @@
46120
46277
  "isDeprecated": false,
46121
46278
  "deprecationReason": null
46122
46279
  },
46280
+ {
46281
+ "name": "scheduleStrategy",
46282
+ "description": null,
46283
+ "type": {
46284
+ "kind": "ENUM",
46285
+ "name": "ScheduleStrategy",
46286
+ "ofType": null
46287
+ },
46288
+ "defaultValue": null,
46289
+ "isDeprecated": false,
46290
+ "deprecationReason": null
46291
+ },
46123
46292
  {
46124
46293
  "name": "startDate",
46125
46294
  "description": null,
@@ -52781,6 +52950,18 @@
52781
52950
  "isDeprecated": false,
52782
52951
  "deprecationReason": null
52783
52952
  },
52953
+ {
52954
+ "name": "scheduleStrategy",
52955
+ "description": null,
52956
+ "type": {
52957
+ "kind": "ENUM",
52958
+ "name": "ScheduleStrategy",
52959
+ "ofType": null
52960
+ },
52961
+ "defaultValue": null,
52962
+ "isDeprecated": false,
52963
+ "deprecationReason": null
52964
+ },
52784
52965
  {
52785
52966
  "name": "skipTrial",
52786
52967
  "description": null,
@@ -53076,6 +53257,18 @@
53076
53257
  "isDeprecated": false,
53077
53258
  "deprecationReason": null
53078
53259
  },
53260
+ {
53261
+ "name": "scheduleStrategy",
53262
+ "description": null,
53263
+ "type": {
53264
+ "kind": "ENUM",
53265
+ "name": "ScheduleStrategy",
53266
+ "ofType": null
53267
+ },
53268
+ "defaultValue": null,
53269
+ "isDeprecated": false,
53270
+ "deprecationReason": null
53271
+ },
53079
53272
  {
53080
53273
  "name": "skipTrial",
53081
53274
  "description": null,
@@ -56531,6 +56724,81 @@
56531
56724
  "enumValues": null,
56532
56725
  "possibleTypes": null
56533
56726
  },
56727
+ {
56728
+ "kind": "OBJECT",
56729
+ "name": "SalesforceCredentials",
56730
+ "description": null,
56731
+ "fields": [
56732
+ {
56733
+ "name": "domain",
56734
+ "description": null,
56735
+ "args": [],
56736
+ "type": {
56737
+ "kind": "SCALAR",
56738
+ "name": "String",
56739
+ "ofType": null
56740
+ },
56741
+ "isDeprecated": false,
56742
+ "deprecationReason": null
56743
+ }
56744
+ ],
56745
+ "inputFields": null,
56746
+ "interfaces": [],
56747
+ "enumValues": null,
56748
+ "possibleTypes": null
56749
+ },
56750
+ {
56751
+ "kind": "INPUT_OBJECT",
56752
+ "name": "SalesforceCredentialsInput",
56753
+ "description": null,
56754
+ "fields": null,
56755
+ "inputFields": [
56756
+ {
56757
+ "name": "domain",
56758
+ "description": null,
56759
+ "type": {
56760
+ "kind": "SCALAR",
56761
+ "name": "String",
56762
+ "ofType": null
56763
+ },
56764
+ "defaultValue": null,
56765
+ "isDeprecated": false,
56766
+ "deprecationReason": null
56767
+ }
56768
+ ],
56769
+ "interfaces": null,
56770
+ "enumValues": null,
56771
+ "possibleTypes": null
56772
+ },
56773
+ {
56774
+ "kind": "ENUM",
56775
+ "name": "ScheduleStrategy",
56776
+ "description": "Options for when a change for a paid subscription should take effect",
56777
+ "fields": null,
56778
+ "inputFields": null,
56779
+ "interfaces": null,
56780
+ "enumValues": [
56781
+ {
56782
+ "name": "END_OF_BILLING_MONTH",
56783
+ "description": "Schedule the change to the end of the billing month (for subscriptions whose billing period is larger then month)",
56784
+ "isDeprecated": false,
56785
+ "deprecationReason": null
56786
+ },
56787
+ {
56788
+ "name": "END_OF_BILLING_PERIOD",
56789
+ "description": "Schedule the change to the end of the billing period",
56790
+ "isDeprecated": false,
56791
+ "deprecationReason": null
56792
+ },
56793
+ {
56794
+ "name": "IMMEDIATE",
56795
+ "description": "Apply the change immediately",
56796
+ "isDeprecated": false,
56797
+ "deprecationReason": null
56798
+ }
56799
+ ],
56800
+ "possibleTypes": null
56801
+ },
56534
56802
  {
56535
56803
  "kind": "UNION",
56536
56804
  "name": "ScheduleVariables",
@@ -56555,6 +56823,11 @@
56555
56823
  "name": "DowngradeChangeVariables",
56556
56824
  "ofType": null
56557
56825
  },
56826
+ {
56827
+ "kind": "OBJECT",
56828
+ "name": "PlanChangeVariables",
56829
+ "ofType": null
56830
+ },
56558
56831
  {
56559
56832
  "kind": "OBJECT",
56560
56833
  "name": "UnitAmountChangeVariables",
@@ -62315,6 +62588,18 @@
62315
62588
  "isDeprecated": false,
62316
62589
  "deprecationReason": null
62317
62590
  },
62591
+ {
62592
+ "name": "scheduleStrategy",
62593
+ "description": null,
62594
+ "type": {
62595
+ "kind": "ENUM",
62596
+ "name": "ScheduleStrategy",
62597
+ "ofType": null
62598
+ },
62599
+ "defaultValue": null,
62600
+ "isDeprecated": false,
62601
+ "deprecationReason": null
62602
+ },
62318
62603
  {
62319
62604
  "name": "startDate",
62320
62605
  "description": null,
@@ -65787,6 +66072,12 @@
65787
66072
  "isDeprecated": false,
65788
66073
  "deprecationReason": null
65789
66074
  },
66075
+ {
66076
+ "name": "Plan",
66077
+ "description": null,
66078
+ "isDeprecated": false,
66079
+ "deprecationReason": null
66080
+ },
65790
66081
  {
65791
66082
  "name": "UnitAmount",
65792
66083
  "description": null,
@@ -68997,6 +69288,18 @@
68997
69288
  "description": null,
68998
69289
  "fields": null,
68999
69290
  "inputFields": [
69291
+ {
69292
+ "name": "salesforceCredentials",
69293
+ "description": "Salesforce integration configuration",
69294
+ "type": {
69295
+ "kind": "INPUT_OBJECT",
69296
+ "name": "SalesforceCredentialsInput",
69297
+ "ofType": null
69298
+ },
69299
+ "defaultValue": null,
69300
+ "isDeprecated": false,
69301
+ "deprecationReason": null
69302
+ },
69000
69303
  {
69001
69304
  "name": "stripeCredentials",
69002
69305
  "description": null,
@@ -69694,6 +69997,18 @@
69694
69997
  "isDeprecated": false,
69695
69998
  "deprecationReason": null
69696
69999
  },
70000
+ {
70001
+ "name": "scheduleStrategy",
70002
+ "description": null,
70003
+ "type": {
70004
+ "kind": "ENUM",
70005
+ "name": "ScheduleStrategy",
70006
+ "ofType": null
70007
+ },
70008
+ "defaultValue": null,
70009
+ "isDeprecated": false,
70010
+ "deprecationReason": null
70011
+ },
69697
70012
  {
69698
70013
  "name": "subscriptionEntitlements",
69699
70014
  "description": null,
@@ -72134,6 +72449,12 @@
72134
72449
  "isDeprecated": false,
72135
72450
  "deprecationReason": null
72136
72451
  },
72452
+ {
72453
+ "name": "SALESFORCE",
72454
+ "description": null,
72455
+ "isDeprecated": false,
72456
+ "deprecationReason": null
72457
+ },
72137
72458
  {
72138
72459
  "name": "SNOWFLAKE",
72139
72460
  "description": null,
data/lib/stigg/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Stigg
4
- VERSION = "1.48.7"
4
+ VERSION = "1.51.2"
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: 1.48.7
4
+ version: 1.51.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stigg
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-02-29 00:00:00.000000000 Z
11
+ date: 2024-03-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: graphlient