stigg-api-client 5.246.0 → 5.247.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/operations.rb +6 -0
- data/lib/stigg/generated/schema.json +24 -0
- data/lib/stigg/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f74b8c748fb98c5eb7ffddd74e0c4e504883059c52d6faea33f92d517656e329
|
|
4
|
+
data.tar.gz: 3a2872b925e91e1225a91307cf6968e4f5e58ff7dce50c61fc68b208f52b39fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c471ef37841f7e1f1ea685ae6cab7c62cb02fd3fd8c8ec93add9509afddd4c2315eb20129bd05b1804315f4653acfdebcf022cc53293a672baeb8aeba9bef35d
|
|
7
|
+
data.tar.gz: 317146206cab83a19ad7408de62825588e05c095cb690071f7451dc5a457cf329fecc9493e9aad8b52a679aed6577921040a7148dc077f946c93ffd482d41aa7
|
data/Gemfile.lock
CHANGED
|
@@ -1223,6 +1223,9 @@ module Stigg
|
|
|
1223
1223
|
entitlements {
|
|
1224
1224
|
...CustomerPortalEntitlementFragment
|
|
1225
1225
|
}
|
|
1226
|
+
entitlementsV2 {
|
|
1227
|
+
...EntitlementUnionFragment
|
|
1228
|
+
}
|
|
1226
1229
|
promotionalEntitlements {
|
|
1227
1230
|
...CustomerPortalPromotionalEntitlementFragment
|
|
1228
1231
|
}
|
|
@@ -2790,6 +2793,9 @@ module Stigg
|
|
|
2790
2793
|
#{Fragment::CustomerPortalEntitlementFragment}
|
|
2791
2794
|
#{Fragment::ResetPeriodConfigurationFragment}
|
|
2792
2795
|
#{Fragment::FeatureFragment}
|
|
2796
|
+
#{Fragment::EntitlementUnionFragment}
|
|
2797
|
+
#{Fragment::FeatureEntitlementFragment}
|
|
2798
|
+
#{Fragment::CreditEntitlementFragment}
|
|
2793
2799
|
#{Fragment::CustomerPortalPromotionalEntitlementFragment}
|
|
2794
2800
|
#{Fragment::CustomerPortalBillingInformationFragment}
|
|
2795
2801
|
#{Fragment::CustomerPortalConfigurationFragment}
|
|
@@ -21315,6 +21315,30 @@
|
|
|
21315
21315
|
}
|
|
21316
21316
|
}
|
|
21317
21317
|
},
|
|
21318
|
+
"isDeprecated": true,
|
|
21319
|
+
"deprecationReason": "Use 'entitlementsV2' instead, which includes both feature and credit entitlements."
|
|
21320
|
+
},
|
|
21321
|
+
{
|
|
21322
|
+
"name": "entitlementsV2",
|
|
21323
|
+
"description": "All effective entitlements (feature and credit) granted to the customer with usage data.",
|
|
21324
|
+
"args": [],
|
|
21325
|
+
"type": {
|
|
21326
|
+
"kind": "NON_NULL",
|
|
21327
|
+
"name": null,
|
|
21328
|
+
"ofType": {
|
|
21329
|
+
"kind": "LIST",
|
|
21330
|
+
"name": null,
|
|
21331
|
+
"ofType": {
|
|
21332
|
+
"kind": "NON_NULL",
|
|
21333
|
+
"name": null,
|
|
21334
|
+
"ofType": {
|
|
21335
|
+
"kind": "UNION",
|
|
21336
|
+
"name": "EntitlementUnion",
|
|
21337
|
+
"ofType": null
|
|
21338
|
+
}
|
|
21339
|
+
}
|
|
21340
|
+
}
|
|
21341
|
+
},
|
|
21318
21342
|
"isDeprecated": false,
|
|
21319
21343
|
"deprecationReason": null
|
|
21320
21344
|
},
|
data/lib/stigg/version.rb
CHANGED