stigg-api-client 5.116.0 → 5.118.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.
@@ -738,8 +738,8 @@
738
738
  }
739
739
  }
740
740
  },
741
- "isDeprecated": false,
742
- "deprecationReason": null
741
+ "isDeprecated": true,
742
+ "deprecationReason": "Use 'packageEntitlements' field instead"
743
743
  },
744
744
  {
745
745
  "name": "environment",
@@ -893,6 +893,26 @@
893
893
  "isDeprecated": false,
894
894
  "deprecationReason": null
895
895
  },
896
+ {
897
+ "name": "packageEntitlements",
898
+ "description": "List of entitlements for the addon",
899
+ "args": [],
900
+ "type": {
901
+ "kind": "LIST",
902
+ "name": null,
903
+ "ofType": {
904
+ "kind": "NON_NULL",
905
+ "name": null,
906
+ "ofType": {
907
+ "kind": "UNION",
908
+ "name": "PackageEntitlementUnion",
909
+ "ofType": null
910
+ }
911
+ }
912
+ },
913
+ "isDeprecated": false,
914
+ "deprecationReason": null
915
+ },
896
916
  {
897
917
  "name": "prices",
898
918
  "description": null,
@@ -13179,6 +13199,92 @@
13179
13199
  "enumValues": null,
13180
13200
  "possibleTypes": null
13181
13201
  },
13202
+ {
13203
+ "kind": "INPUT_OBJECT",
13204
+ "name": "CreatePackageEntitlementInput",
13205
+ "description": "Package entitlement input",
13206
+ "fields": null,
13207
+ "inputFields": [
13208
+ {
13209
+ "name": "feature",
13210
+ "description": "Package feature entitlement",
13211
+ "type": {
13212
+ "kind": "INPUT_OBJECT",
13213
+ "name": "PackageFeatureEntitlementInput",
13214
+ "ofType": null
13215
+ },
13216
+ "defaultValue": null,
13217
+ "isDeprecated": false,
13218
+ "deprecationReason": null
13219
+ }
13220
+ ],
13221
+ "interfaces": null,
13222
+ "enumValues": null,
13223
+ "possibleTypes": null
13224
+ },
13225
+ {
13226
+ "kind": "INPUT_OBJECT",
13227
+ "name": "CreatePackageEntitlementsInput",
13228
+ "description": "Create package entitlements input",
13229
+ "fields": null,
13230
+ "inputFields": [
13231
+ {
13232
+ "name": "entitlements",
13233
+ "description": "List of package entitlements to create",
13234
+ "type": {
13235
+ "kind": "NON_NULL",
13236
+ "name": null,
13237
+ "ofType": {
13238
+ "kind": "LIST",
13239
+ "name": null,
13240
+ "ofType": {
13241
+ "kind": "NON_NULL",
13242
+ "name": null,
13243
+ "ofType": {
13244
+ "kind": "INPUT_OBJECT",
13245
+ "name": "CreatePackageEntitlementInput",
13246
+ "ofType": null
13247
+ }
13248
+ }
13249
+ }
13250
+ },
13251
+ "defaultValue": null,
13252
+ "isDeprecated": false,
13253
+ "deprecationReason": null
13254
+ },
13255
+ {
13256
+ "name": "environmentId",
13257
+ "description": "The unique identifier for the environment",
13258
+ "type": {
13259
+ "kind": "SCALAR",
13260
+ "name": "UUID",
13261
+ "ofType": null
13262
+ },
13263
+ "defaultValue": null,
13264
+ "isDeprecated": false,
13265
+ "deprecationReason": null
13266
+ },
13267
+ {
13268
+ "name": "packageId",
13269
+ "description": "The unique identifier of the entitlement package",
13270
+ "type": {
13271
+ "kind": "NON_NULL",
13272
+ "name": null,
13273
+ "ofType": {
13274
+ "kind": "SCALAR",
13275
+ "name": "UUID",
13276
+ "ofType": null
13277
+ }
13278
+ },
13279
+ "defaultValue": null,
13280
+ "isDeprecated": false,
13281
+ "deprecationReason": null
13282
+ }
13283
+ ],
13284
+ "interfaces": null,
13285
+ "enumValues": null,
13286
+ "possibleTypes": null
13287
+ },
13182
13288
  {
13183
13289
  "kind": "INPUT_OBJECT",
13184
13290
  "name": "CreatePackageGroup",
@@ -27124,6 +27230,33 @@
27124
27230
  "enumValues": null,
27125
27231
  "possibleTypes": null
27126
27232
  },
27233
+ {
27234
+ "kind": "INPUT_OBJECT",
27235
+ "name": "DeletePackageEntitlementInput",
27236
+ "description": "Delete package entitlement input",
27237
+ "fields": null,
27238
+ "inputFields": [
27239
+ {
27240
+ "name": "id",
27241
+ "description": "Unique identifier for the entity",
27242
+ "type": {
27243
+ "kind": "NON_NULL",
27244
+ "name": null,
27245
+ "ofType": {
27246
+ "kind": "SCALAR",
27247
+ "name": "UUID",
27248
+ "ofType": null
27249
+ }
27250
+ },
27251
+ "defaultValue": null,
27252
+ "isDeprecated": false,
27253
+ "deprecationReason": null
27254
+ }
27255
+ ],
27256
+ "interfaces": null,
27257
+ "enumValues": null,
27258
+ "possibleTypes": null
27259
+ },
27127
27260
  {
27128
27261
  "kind": "INPUT_OBJECT",
27129
27262
  "name": "DeleteWorkflowTriggerInput",
@@ -49903,6 +50036,47 @@
49903
50036
  "isDeprecated": false,
49904
50037
  "deprecationReason": null
49905
50038
  },
50039
+ {
50040
+ "name": "createPackageEntitlements",
50041
+ "description": "Create package entitlements",
50042
+ "args": [
50043
+ {
50044
+ "name": "input",
50045
+ "description": "Create package entitlements input",
50046
+ "type": {
50047
+ "kind": "NON_NULL",
50048
+ "name": null,
50049
+ "ofType": {
50050
+ "kind": "INPUT_OBJECT",
50051
+ "name": "CreatePackageEntitlementsInput",
50052
+ "ofType": null
50053
+ }
50054
+ },
50055
+ "defaultValue": null,
50056
+ "isDeprecated": false,
50057
+ "deprecationReason": null
50058
+ }
50059
+ ],
50060
+ "type": {
50061
+ "kind": "NON_NULL",
50062
+ "name": null,
50063
+ "ofType": {
50064
+ "kind": "LIST",
50065
+ "name": null,
50066
+ "ofType": {
50067
+ "kind": "NON_NULL",
50068
+ "name": null,
50069
+ "ofType": {
50070
+ "kind": "UNION",
50071
+ "name": "PackageEntitlementUnion",
50072
+ "ofType": null
50073
+ }
50074
+ }
50075
+ }
50076
+ },
50077
+ "isDeprecated": false,
50078
+ "deprecationReason": null
50079
+ },
49906
50080
  {
49907
50081
  "name": "createPackageGroup",
49908
50082
  "description": "Creating a package group",
@@ -50398,6 +50572,39 @@
50398
50572
  "isDeprecated": false,
50399
50573
  "deprecationReason": null
50400
50574
  },
50575
+ {
50576
+ "name": "deletePackageEntitlement",
50577
+ "description": "Delete a package entitlement",
50578
+ "args": [
50579
+ {
50580
+ "name": "input",
50581
+ "description": "Delete package entitlement input",
50582
+ "type": {
50583
+ "kind": "NON_NULL",
50584
+ "name": null,
50585
+ "ofType": {
50586
+ "kind": "INPUT_OBJECT",
50587
+ "name": "DeletePackageEntitlementInput",
50588
+ "ofType": null
50589
+ }
50590
+ },
50591
+ "defaultValue": null,
50592
+ "isDeprecated": false,
50593
+ "deprecationReason": null
50594
+ }
50595
+ ],
50596
+ "type": {
50597
+ "kind": "NON_NULL",
50598
+ "name": null,
50599
+ "ofType": {
50600
+ "kind": "UNION",
50601
+ "name": "PackageEntitlementUnion",
50602
+ "ofType": null
50603
+ }
50604
+ },
50605
+ "isDeprecated": false,
50606
+ "deprecationReason": null
50607
+ },
50401
50608
  {
50402
50609
  "name": "deleteWorkflowTrigger",
50403
50610
  "description": "Delete a workflow trigger",
@@ -53881,6 +54088,39 @@
53881
54088
  "isDeprecated": false,
53882
54089
  "deprecationReason": null
53883
54090
  },
54091
+ {
54092
+ "name": "updatePackageEntitlement",
54093
+ "description": "Update a package entitlement",
54094
+ "args": [
54095
+ {
54096
+ "name": "input",
54097
+ "description": "Update package entitlement input",
54098
+ "type": {
54099
+ "kind": "NON_NULL",
54100
+ "name": null,
54101
+ "ofType": {
54102
+ "kind": "INPUT_OBJECT",
54103
+ "name": "UpdatePackageEntitlementInput",
54104
+ "ofType": null
54105
+ }
54106
+ },
54107
+ "defaultValue": null,
54108
+ "isDeprecated": false,
54109
+ "deprecationReason": null
54110
+ }
54111
+ ],
54112
+ "type": {
54113
+ "kind": "NON_NULL",
54114
+ "name": null,
54115
+ "ofType": {
54116
+ "kind": "UNION",
54117
+ "name": "PackageEntitlementUnion",
54118
+ "ofType": null
54119
+ }
54120
+ },
54121
+ "isDeprecated": false,
54122
+ "deprecationReason": null
54123
+ },
53884
54124
  {
53885
54125
  "name": "updateUser",
53886
54126
  "description": "Updates the user information",
@@ -56638,26 +56878,6 @@
56638
56878
  "isDeprecated": false,
56639
56879
  "deprecationReason": null
56640
56880
  },
56641
- {
56642
- "name": "entitlements",
56643
- "description": "List of entitlements of the package",
56644
- "args": [],
56645
- "type": {
56646
- "kind": "LIST",
56647
- "name": null,
56648
- "ofType": {
56649
- "kind": "NON_NULL",
56650
- "name": null,
56651
- "ofType": {
56652
- "kind": "OBJECT",
56653
- "name": "PackageEntitlement",
56654
- "ofType": null
56655
- }
56656
- }
56657
- },
56658
- "isDeprecated": false,
56659
- "deprecationReason": null
56660
- },
56661
56881
  {
56662
56882
  "name": "environmentId",
56663
56883
  "description": "The unique identifier for the environment",
@@ -59571,6 +59791,22 @@
59571
59791
  ],
59572
59792
  "possibleTypes": null
59573
59793
  },
59794
+ {
59795
+ "kind": "UNION",
59796
+ "name": "PackageEntitlementUnion",
59797
+ "description": null,
59798
+ "fields": null,
59799
+ "inputFields": null,
59800
+ "interfaces": null,
59801
+ "enumValues": null,
59802
+ "possibleTypes": [
59803
+ {
59804
+ "kind": "OBJECT",
59805
+ "name": "PackageFeatureEntitlement",
59806
+ "ofType": null
59807
+ }
59808
+ ]
59809
+ },
59574
59810
  {
59575
59811
  "kind": "INPUT_OBJECT",
59576
59812
  "name": "PackageEntitlementUpdateInput",
@@ -59780,57 +60016,20 @@
59780
60016
  },
59781
60017
  {
59782
60018
  "kind": "OBJECT",
59783
- "name": "PackageGroup",
59784
- "description": "A set of addons bundled together",
60019
+ "name": "PackageFeatureEntitlement",
60020
+ "description": "Package feature entitlement",
59785
60021
  "fields": [
59786
60022
  {
59787
- "name": "addons",
59788
- "description": null,
59789
- "args": [
59790
- {
59791
- "name": "filter",
59792
- "description": "Specify to filter the records returned.",
59793
- "type": {
59794
- "kind": "INPUT_OBJECT",
59795
- "name": "AddonFilter",
59796
- "ofType": null
59797
- },
59798
- "defaultValue": "{}",
59799
- "isDeprecated": false,
59800
- "deprecationReason": null
59801
- },
59802
- {
59803
- "name": "sorting",
59804
- "description": "Specify to sort results.",
59805
- "type": {
59806
- "kind": "LIST",
59807
- "name": null,
59808
- "ofType": {
59809
- "kind": "NON_NULL",
59810
- "name": null,
59811
- "ofType": {
59812
- "kind": "INPUT_OBJECT",
59813
- "name": "AddonSort",
59814
- "ofType": null
59815
- }
59816
- }
59817
- },
59818
- "defaultValue": "[{direction: DESC, field: createdAt}]",
59819
- "isDeprecated": false,
59820
- "deprecationReason": null
59821
- }
59822
- ],
60023
+ "name": "behavior",
60024
+ "description": "The behavior of the entitlement",
60025
+ "args": [],
59823
60026
  "type": {
59824
- "kind": "LIST",
60027
+ "kind": "NON_NULL",
59825
60028
  "name": null,
59826
60029
  "ofType": {
59827
- "kind": "NON_NULL",
59828
- "name": null,
59829
- "ofType": {
59830
- "kind": "OBJECT",
59831
- "name": "Addon",
59832
- "ofType": null
59833
- }
60030
+ "kind": "ENUM",
60031
+ "name": "EntitlementBehavior",
60032
+ "ofType": null
59834
60033
  }
59835
60034
  },
59836
60035
  "isDeprecated": false,
@@ -59841,20 +60040,16 @@
59841
60040
  "description": "Timestamp of when the record was created",
59842
60041
  "args": [],
59843
60042
  "type": {
59844
- "kind": "NON_NULL",
59845
- "name": null,
59846
- "ofType": {
59847
- "kind": "SCALAR",
59848
- "name": "DateTime",
59849
- "ofType": null
59850
- }
60043
+ "kind": "SCALAR",
60044
+ "name": "DateTime",
60045
+ "ofType": null
59851
60046
  },
59852
60047
  "isDeprecated": false,
59853
60048
  "deprecationReason": null
59854
60049
  },
59855
60050
  {
59856
60051
  "name": "description",
59857
- "description": "The description of the package group",
60052
+ "description": "The description of the entitlement",
59858
60053
  "args": [],
59859
60054
  "type": {
59860
60055
  "kind": "SCALAR",
@@ -59865,16 +60060,1185 @@
59865
60060
  "deprecationReason": null
59866
60061
  },
59867
60062
  {
59868
- "name": "displayName",
59869
- "description": "The display name of the package group",
60063
+ "name": "displayNameOverride",
60064
+ "description": "The display name override of the entitlement",
59870
60065
  "args": [],
59871
60066
  "type": {
59872
- "kind": "NON_NULL",
60067
+ "kind": "SCALAR",
60068
+ "name": "String",
60069
+ "ofType": null
60070
+ },
60071
+ "isDeprecated": false,
60072
+ "deprecationReason": null
60073
+ },
60074
+ {
60075
+ "name": "enumValues",
60076
+ "description": "The enum values of the entitlement",
60077
+ "args": [],
60078
+ "type": {
60079
+ "kind": "LIST",
59873
60080
  "name": null,
59874
60081
  "ofType": {
59875
- "kind": "SCALAR",
59876
- "name": "String",
59877
- "ofType": null
60082
+ "kind": "NON_NULL",
60083
+ "name": null,
60084
+ "ofType": {
60085
+ "kind": "SCALAR",
60086
+ "name": "String",
60087
+ "ofType": null
60088
+ }
60089
+ }
60090
+ },
60091
+ "isDeprecated": false,
60092
+ "deprecationReason": null
60093
+ },
60094
+ {
60095
+ "name": "environmentId",
60096
+ "description": "The unique identifier for the environment",
60097
+ "args": [],
60098
+ "type": {
60099
+ "kind": "NON_NULL",
60100
+ "name": null,
60101
+ "ofType": {
60102
+ "kind": "SCALAR",
60103
+ "name": "UUID",
60104
+ "ofType": null
60105
+ }
60106
+ },
60107
+ "isDeprecated": false,
60108
+ "deprecationReason": null
60109
+ },
60110
+ {
60111
+ "name": "feature",
60112
+ "description": null,
60113
+ "args": [],
60114
+ "type": {
60115
+ "kind": "NON_NULL",
60116
+ "name": null,
60117
+ "ofType": {
60118
+ "kind": "OBJECT",
60119
+ "name": "Feature",
60120
+ "ofType": null
60121
+ }
60122
+ },
60123
+ "isDeprecated": false,
60124
+ "deprecationReason": null
60125
+ },
60126
+ {
60127
+ "name": "featureGroupIds",
60128
+ "description": "Feature group IDs associated with this entitlement",
60129
+ "args": [],
60130
+ "type": {
60131
+ "kind": "LIST",
60132
+ "name": null,
60133
+ "ofType": {
60134
+ "kind": "NON_NULL",
60135
+ "name": null,
60136
+ "ofType": {
60137
+ "kind": "SCALAR",
60138
+ "name": "String",
60139
+ "ofType": null
60140
+ }
60141
+ }
60142
+ },
60143
+ "isDeprecated": false,
60144
+ "deprecationReason": null
60145
+ },
60146
+ {
60147
+ "name": "featureGroups",
60148
+ "description": "Feature groups associated with this entitlement",
60149
+ "args": [],
60150
+ "type": {
60151
+ "kind": "LIST",
60152
+ "name": null,
60153
+ "ofType": {
60154
+ "kind": "NON_NULL",
60155
+ "name": null,
60156
+ "ofType": {
60157
+ "kind": "OBJECT",
60158
+ "name": "FeatureGroup",
60159
+ "ofType": null
60160
+ }
60161
+ }
60162
+ },
60163
+ "isDeprecated": false,
60164
+ "deprecationReason": null
60165
+ },
60166
+ {
60167
+ "name": "featureId",
60168
+ "description": "The unique identifier of the entitlement feature",
60169
+ "args": [],
60170
+ "type": {
60171
+ "kind": "NON_NULL",
60172
+ "name": null,
60173
+ "ofType": {
60174
+ "kind": "SCALAR",
60175
+ "name": "String",
60176
+ "ofType": null
60177
+ }
60178
+ },
60179
+ "isDeprecated": false,
60180
+ "deprecationReason": null
60181
+ },
60182
+ {
60183
+ "name": "hasSoftLimit",
60184
+ "description": "Whether the entitlement has a soft limit",
60185
+ "args": [],
60186
+ "type": {
60187
+ "kind": "SCALAR",
60188
+ "name": "Boolean",
60189
+ "ofType": null
60190
+ },
60191
+ "isDeprecated": false,
60192
+ "deprecationReason": null
60193
+ },
60194
+ {
60195
+ "name": "hasUnlimitedUsage",
60196
+ "description": "Whether the entitlement has an unlimited usage",
60197
+ "args": [],
60198
+ "type": {
60199
+ "kind": "SCALAR",
60200
+ "name": "Boolean",
60201
+ "ofType": null
60202
+ },
60203
+ "isDeprecated": false,
60204
+ "deprecationReason": null
60205
+ },
60206
+ {
60207
+ "name": "hiddenFromWidgets",
60208
+ "description": "Whether the entitlement is hidden from widgets",
60209
+ "args": [],
60210
+ "type": {
60211
+ "kind": "LIST",
60212
+ "name": null,
60213
+ "ofType": {
60214
+ "kind": "NON_NULL",
60215
+ "name": null,
60216
+ "ofType": {
60217
+ "kind": "ENUM",
60218
+ "name": "WidgetType",
60219
+ "ofType": null
60220
+ }
60221
+ }
60222
+ },
60223
+ "isDeprecated": false,
60224
+ "deprecationReason": null
60225
+ },
60226
+ {
60227
+ "name": "id",
60228
+ "description": null,
60229
+ "args": [],
60230
+ "type": {
60231
+ "kind": "NON_NULL",
60232
+ "name": null,
60233
+ "ofType": {
60234
+ "kind": "SCALAR",
60235
+ "name": "UUID",
60236
+ "ofType": null
60237
+ }
60238
+ },
60239
+ "isDeprecated": false,
60240
+ "deprecationReason": null
60241
+ },
60242
+ {
60243
+ "name": "isCustom",
60244
+ "description": "Whether the entitlement is a custom entitlement",
60245
+ "args": [],
60246
+ "type": {
60247
+ "kind": "SCALAR",
60248
+ "name": "Boolean",
60249
+ "ofType": null
60250
+ },
60251
+ "isDeprecated": false,
60252
+ "deprecationReason": null
60253
+ },
60254
+ {
60255
+ "name": "isGranted",
60256
+ "description": "Whether entitlement grant is active",
60257
+ "args": [],
60258
+ "type": {
60259
+ "kind": "NON_NULL",
60260
+ "name": null,
60261
+ "ofType": {
60262
+ "kind": "SCALAR",
60263
+ "name": "Boolean",
60264
+ "ofType": null
60265
+ }
60266
+ },
60267
+ "isDeprecated": false,
60268
+ "deprecationReason": null
60269
+ },
60270
+ {
60271
+ "name": "meter",
60272
+ "description": null,
60273
+ "args": [],
60274
+ "type": {
60275
+ "kind": "OBJECT",
60276
+ "name": "Meter",
60277
+ "ofType": null
60278
+ },
60279
+ "isDeprecated": false,
60280
+ "deprecationReason": null
60281
+ },
60282
+ {
60283
+ "name": "order",
60284
+ "description": "The order of the entitlement in the entitlement list",
60285
+ "args": [],
60286
+ "type": {
60287
+ "kind": "SCALAR",
60288
+ "name": "Float",
60289
+ "ofType": null
60290
+ },
60291
+ "isDeprecated": false,
60292
+ "deprecationReason": null
60293
+ },
60294
+ {
60295
+ "name": "package",
60296
+ "description": null,
60297
+ "args": [],
60298
+ "type": {
60299
+ "kind": "OBJECT",
60300
+ "name": "PackageDTO",
60301
+ "ofType": null
60302
+ },
60303
+ "isDeprecated": false,
60304
+ "deprecationReason": null
60305
+ },
60306
+ {
60307
+ "name": "packageId",
60308
+ "description": "The unique identifier of the entitlement package",
60309
+ "args": [],
60310
+ "type": {
60311
+ "kind": "NON_NULL",
60312
+ "name": null,
60313
+ "ofType": {
60314
+ "kind": "SCALAR",
60315
+ "name": "String",
60316
+ "ofType": null
60317
+ }
60318
+ },
60319
+ "isDeprecated": false,
60320
+ "deprecationReason": null
60321
+ },
60322
+ {
60323
+ "name": "resetPeriod",
60324
+ "description": "The reset period of the entitlement",
60325
+ "args": [],
60326
+ "type": {
60327
+ "kind": "ENUM",
60328
+ "name": "EntitlementResetPeriod",
60329
+ "ofType": null
60330
+ },
60331
+ "isDeprecated": false,
60332
+ "deprecationReason": null
60333
+ },
60334
+ {
60335
+ "name": "resetPeriodConfiguration",
60336
+ "description": "The reset period configuration of the entitlement",
60337
+ "args": [],
60338
+ "type": {
60339
+ "kind": "UNION",
60340
+ "name": "ResetPeriodConfiguration",
60341
+ "ofType": null
60342
+ },
60343
+ "isDeprecated": false,
60344
+ "deprecationReason": null
60345
+ },
60346
+ {
60347
+ "name": "updatedAt",
60348
+ "description": "Timestamp of when the record was last updated",
60349
+ "args": [],
60350
+ "type": {
60351
+ "kind": "SCALAR",
60352
+ "name": "DateTime",
60353
+ "ofType": null
60354
+ },
60355
+ "isDeprecated": false,
60356
+ "deprecationReason": null
60357
+ },
60358
+ {
60359
+ "name": "usageLimit",
60360
+ "description": "The usage limit of the entitlement",
60361
+ "args": [],
60362
+ "type": {
60363
+ "kind": "SCALAR",
60364
+ "name": "Float",
60365
+ "ofType": null
60366
+ },
60367
+ "isDeprecated": false,
60368
+ "deprecationReason": null
60369
+ }
60370
+ ],
60371
+ "inputFields": null,
60372
+ "interfaces": [],
60373
+ "enumValues": null,
60374
+ "possibleTypes": null
60375
+ },
60376
+ {
60377
+ "kind": "OBJECT",
60378
+ "name": "PackageFeatureEntitlementAggregateGroupBy",
60379
+ "description": null,
60380
+ "fields": [
60381
+ {
60382
+ "name": "createdAt",
60383
+ "description": null,
60384
+ "args": [],
60385
+ "type": {
60386
+ "kind": "SCALAR",
60387
+ "name": "DateTime",
60388
+ "ofType": null
60389
+ },
60390
+ "isDeprecated": false,
60391
+ "deprecationReason": null
60392
+ },
60393
+ {
60394
+ "name": "environmentId",
60395
+ "description": null,
60396
+ "args": [],
60397
+ "type": {
60398
+ "kind": "SCALAR",
60399
+ "name": "UUID",
60400
+ "ofType": null
60401
+ },
60402
+ "isDeprecated": false,
60403
+ "deprecationReason": null
60404
+ },
60405
+ {
60406
+ "name": "id",
60407
+ "description": null,
60408
+ "args": [],
60409
+ "type": {
60410
+ "kind": "SCALAR",
60411
+ "name": "UUID",
60412
+ "ofType": null
60413
+ },
60414
+ "isDeprecated": false,
60415
+ "deprecationReason": null
60416
+ },
60417
+ {
60418
+ "name": "packageId",
60419
+ "description": null,
60420
+ "args": [],
60421
+ "type": {
60422
+ "kind": "SCALAR",
60423
+ "name": "String",
60424
+ "ofType": null
60425
+ },
60426
+ "isDeprecated": false,
60427
+ "deprecationReason": null
60428
+ },
60429
+ {
60430
+ "name": "updatedAt",
60431
+ "description": null,
60432
+ "args": [],
60433
+ "type": {
60434
+ "kind": "SCALAR",
60435
+ "name": "DateTime",
60436
+ "ofType": null
60437
+ },
60438
+ "isDeprecated": false,
60439
+ "deprecationReason": null
60440
+ }
60441
+ ],
60442
+ "inputFields": null,
60443
+ "interfaces": [],
60444
+ "enumValues": null,
60445
+ "possibleTypes": null
60446
+ },
60447
+ {
60448
+ "kind": "OBJECT",
60449
+ "name": "PackageFeatureEntitlementCountAggregate",
60450
+ "description": null,
60451
+ "fields": [
60452
+ {
60453
+ "name": "createdAt",
60454
+ "description": null,
60455
+ "args": [],
60456
+ "type": {
60457
+ "kind": "SCALAR",
60458
+ "name": "Int",
60459
+ "ofType": null
60460
+ },
60461
+ "isDeprecated": false,
60462
+ "deprecationReason": null
60463
+ },
60464
+ {
60465
+ "name": "environmentId",
60466
+ "description": null,
60467
+ "args": [],
60468
+ "type": {
60469
+ "kind": "SCALAR",
60470
+ "name": "Int",
60471
+ "ofType": null
60472
+ },
60473
+ "isDeprecated": false,
60474
+ "deprecationReason": null
60475
+ },
60476
+ {
60477
+ "name": "id",
60478
+ "description": null,
60479
+ "args": [],
60480
+ "type": {
60481
+ "kind": "SCALAR",
60482
+ "name": "Int",
60483
+ "ofType": null
60484
+ },
60485
+ "isDeprecated": false,
60486
+ "deprecationReason": null
60487
+ },
60488
+ {
60489
+ "name": "packageId",
60490
+ "description": null,
60491
+ "args": [],
60492
+ "type": {
60493
+ "kind": "SCALAR",
60494
+ "name": "Int",
60495
+ "ofType": null
60496
+ },
60497
+ "isDeprecated": false,
60498
+ "deprecationReason": null
60499
+ },
60500
+ {
60501
+ "name": "updatedAt",
60502
+ "description": null,
60503
+ "args": [],
60504
+ "type": {
60505
+ "kind": "SCALAR",
60506
+ "name": "Int",
60507
+ "ofType": null
60508
+ },
60509
+ "isDeprecated": false,
60510
+ "deprecationReason": null
60511
+ }
60512
+ ],
60513
+ "inputFields": null,
60514
+ "interfaces": [],
60515
+ "enumValues": null,
60516
+ "possibleTypes": null
60517
+ },
60518
+ {
60519
+ "kind": "OBJECT",
60520
+ "name": "PackageFeatureEntitlementEdge",
60521
+ "description": null,
60522
+ "fields": [
60523
+ {
60524
+ "name": "cursor",
60525
+ "description": "Cursor for this node.",
60526
+ "args": [],
60527
+ "type": {
60528
+ "kind": "NON_NULL",
60529
+ "name": null,
60530
+ "ofType": {
60531
+ "kind": "SCALAR",
60532
+ "name": "ConnectionCursor",
60533
+ "ofType": null
60534
+ }
60535
+ },
60536
+ "isDeprecated": false,
60537
+ "deprecationReason": null
60538
+ },
60539
+ {
60540
+ "name": "node",
60541
+ "description": "The node containing the PackageFeatureEntitlement",
60542
+ "args": [],
60543
+ "type": {
60544
+ "kind": "NON_NULL",
60545
+ "name": null,
60546
+ "ofType": {
60547
+ "kind": "OBJECT",
60548
+ "name": "PackageFeatureEntitlement",
60549
+ "ofType": null
60550
+ }
60551
+ },
60552
+ "isDeprecated": false,
60553
+ "deprecationReason": null
60554
+ }
60555
+ ],
60556
+ "inputFields": null,
60557
+ "interfaces": [],
60558
+ "enumValues": null,
60559
+ "possibleTypes": null
60560
+ },
60561
+ {
60562
+ "kind": "INPUT_OBJECT",
60563
+ "name": "PackageFeatureEntitlementInput",
60564
+ "description": "Package entitlement input",
60565
+ "fields": null,
60566
+ "inputFields": [
60567
+ {
60568
+ "name": "behavior",
60569
+ "description": "The behavior of the entitlement",
60570
+ "type": {
60571
+ "kind": "ENUM",
60572
+ "name": "EntitlementBehavior",
60573
+ "ofType": null
60574
+ },
60575
+ "defaultValue": "Increment",
60576
+ "isDeprecated": false,
60577
+ "deprecationReason": null
60578
+ },
60579
+ {
60580
+ "name": "description",
60581
+ "description": "The description of the entitlement",
60582
+ "type": {
60583
+ "kind": "SCALAR",
60584
+ "name": "String",
60585
+ "ofType": null
60586
+ },
60587
+ "defaultValue": null,
60588
+ "isDeprecated": false,
60589
+ "deprecationReason": null
60590
+ },
60591
+ {
60592
+ "name": "displayNameOverride",
60593
+ "description": "The display name override of the entitlement",
60594
+ "type": {
60595
+ "kind": "SCALAR",
60596
+ "name": "String",
60597
+ "ofType": null
60598
+ },
60599
+ "defaultValue": null,
60600
+ "isDeprecated": false,
60601
+ "deprecationReason": null
60602
+ },
60603
+ {
60604
+ "name": "enumValues",
60605
+ "description": "The enum values of the entitlement",
60606
+ "type": {
60607
+ "kind": "LIST",
60608
+ "name": null,
60609
+ "ofType": {
60610
+ "kind": "NON_NULL",
60611
+ "name": null,
60612
+ "ofType": {
60613
+ "kind": "SCALAR",
60614
+ "name": "String",
60615
+ "ofType": null
60616
+ }
60617
+ }
60618
+ },
60619
+ "defaultValue": null,
60620
+ "isDeprecated": false,
60621
+ "deprecationReason": null
60622
+ },
60623
+ {
60624
+ "name": "featureGroupId",
60625
+ "description": "Primary feature group ID (first in the array) associated with this entitlement",
60626
+ "type": {
60627
+ "kind": "SCALAR",
60628
+ "name": "UUID",
60629
+ "ofType": null
60630
+ },
60631
+ "defaultValue": null,
60632
+ "isDeprecated": false,
60633
+ "deprecationReason": null
60634
+ },
60635
+ {
60636
+ "name": "featureId",
60637
+ "description": "The unique identifier of the entitlement feature",
60638
+ "type": {
60639
+ "kind": "NON_NULL",
60640
+ "name": null,
60641
+ "ofType": {
60642
+ "kind": "SCALAR",
60643
+ "name": "UUID",
60644
+ "ofType": null
60645
+ }
60646
+ },
60647
+ "defaultValue": null,
60648
+ "isDeprecated": false,
60649
+ "deprecationReason": null
60650
+ },
60651
+ {
60652
+ "name": "hasSoftLimit",
60653
+ "description": "Whether the entitlement has a soft limit",
60654
+ "type": {
60655
+ "kind": "SCALAR",
60656
+ "name": "Boolean",
60657
+ "ofType": null
60658
+ },
60659
+ "defaultValue": null,
60660
+ "isDeprecated": false,
60661
+ "deprecationReason": null
60662
+ },
60663
+ {
60664
+ "name": "hasUnlimitedUsage",
60665
+ "description": "Whether the entitlement has an unlimited usage",
60666
+ "type": {
60667
+ "kind": "SCALAR",
60668
+ "name": "Boolean",
60669
+ "ofType": null
60670
+ },
60671
+ "defaultValue": null,
60672
+ "isDeprecated": false,
60673
+ "deprecationReason": null
60674
+ },
60675
+ {
60676
+ "name": "hiddenFromWidgets",
60677
+ "description": "Whether the entitlement is hidden from widgets",
60678
+ "type": {
60679
+ "kind": "LIST",
60680
+ "name": null,
60681
+ "ofType": {
60682
+ "kind": "NON_NULL",
60683
+ "name": null,
60684
+ "ofType": {
60685
+ "kind": "ENUM",
60686
+ "name": "WidgetType",
60687
+ "ofType": null
60688
+ }
60689
+ }
60690
+ },
60691
+ "defaultValue": null,
60692
+ "isDeprecated": false,
60693
+ "deprecationReason": null
60694
+ },
60695
+ {
60696
+ "name": "isCustom",
60697
+ "description": "Whether the entitlement is a custom entitlement",
60698
+ "type": {
60699
+ "kind": "SCALAR",
60700
+ "name": "Boolean",
60701
+ "ofType": null
60702
+ },
60703
+ "defaultValue": null,
60704
+ "isDeprecated": false,
60705
+ "deprecationReason": null
60706
+ },
60707
+ {
60708
+ "name": "isGranted",
60709
+ "description": "Whether entitlement grant is active",
60710
+ "type": {
60711
+ "kind": "SCALAR",
60712
+ "name": "Boolean",
60713
+ "ofType": null
60714
+ },
60715
+ "defaultValue": null,
60716
+ "isDeprecated": false,
60717
+ "deprecationReason": null
60718
+ },
60719
+ {
60720
+ "name": "monthlyResetPeriodConfiguration",
60721
+ "description": "The monthly reset period configuration of the entitlement, defined when reset period is monthly",
60722
+ "type": {
60723
+ "kind": "INPUT_OBJECT",
60724
+ "name": "MonthlyResetPeriodConfigInput",
60725
+ "ofType": null
60726
+ },
60727
+ "defaultValue": null,
60728
+ "isDeprecated": false,
60729
+ "deprecationReason": null
60730
+ },
60731
+ {
60732
+ "name": "order",
60733
+ "description": "The order of the entitlement in the entitlement list",
60734
+ "type": {
60735
+ "kind": "SCALAR",
60736
+ "name": "Float",
60737
+ "ofType": null
60738
+ },
60739
+ "defaultValue": null,
60740
+ "isDeprecated": false,
60741
+ "deprecationReason": null
60742
+ },
60743
+ {
60744
+ "name": "resetPeriod",
60745
+ "description": "The reset period of the entitlement",
60746
+ "type": {
60747
+ "kind": "ENUM",
60748
+ "name": "EntitlementResetPeriod",
60749
+ "ofType": null
60750
+ },
60751
+ "defaultValue": null,
60752
+ "isDeprecated": false,
60753
+ "deprecationReason": null
60754
+ },
60755
+ {
60756
+ "name": "usageLimit",
60757
+ "description": "The usage limit of the entitlement",
60758
+ "type": {
60759
+ "kind": "SCALAR",
60760
+ "name": "Float",
60761
+ "ofType": null
60762
+ },
60763
+ "defaultValue": null,
60764
+ "isDeprecated": false,
60765
+ "deprecationReason": null
60766
+ },
60767
+ {
60768
+ "name": "weeklyResetPeriodConfiguration",
60769
+ "description": "The weekly reset period configuration of the entitlement, defined when reset period is weekly",
60770
+ "type": {
60771
+ "kind": "INPUT_OBJECT",
60772
+ "name": "WeeklyResetPeriodConfigInput",
60773
+ "ofType": null
60774
+ },
60775
+ "defaultValue": null,
60776
+ "isDeprecated": false,
60777
+ "deprecationReason": null
60778
+ },
60779
+ {
60780
+ "name": "yearlyResetPeriodConfiguration",
60781
+ "description": "The yearly reset period configuration of the entitlement, defined when reset period is yearly",
60782
+ "type": {
60783
+ "kind": "INPUT_OBJECT",
60784
+ "name": "YearlyResetPeriodConfigInput",
60785
+ "ofType": null
60786
+ },
60787
+ "defaultValue": null,
60788
+ "isDeprecated": false,
60789
+ "deprecationReason": null
60790
+ }
60791
+ ],
60792
+ "interfaces": null,
60793
+ "enumValues": null,
60794
+ "possibleTypes": null
60795
+ },
60796
+ {
60797
+ "kind": "OBJECT",
60798
+ "name": "PackageFeatureEntitlementMaxAggregate",
60799
+ "description": null,
60800
+ "fields": [
60801
+ {
60802
+ "name": "createdAt",
60803
+ "description": null,
60804
+ "args": [],
60805
+ "type": {
60806
+ "kind": "SCALAR",
60807
+ "name": "DateTime",
60808
+ "ofType": null
60809
+ },
60810
+ "isDeprecated": false,
60811
+ "deprecationReason": null
60812
+ },
60813
+ {
60814
+ "name": "environmentId",
60815
+ "description": null,
60816
+ "args": [],
60817
+ "type": {
60818
+ "kind": "SCALAR",
60819
+ "name": "UUID",
60820
+ "ofType": null
60821
+ },
60822
+ "isDeprecated": false,
60823
+ "deprecationReason": null
60824
+ },
60825
+ {
60826
+ "name": "id",
60827
+ "description": null,
60828
+ "args": [],
60829
+ "type": {
60830
+ "kind": "SCALAR",
60831
+ "name": "UUID",
60832
+ "ofType": null
60833
+ },
60834
+ "isDeprecated": false,
60835
+ "deprecationReason": null
60836
+ },
60837
+ {
60838
+ "name": "packageId",
60839
+ "description": null,
60840
+ "args": [],
60841
+ "type": {
60842
+ "kind": "SCALAR",
60843
+ "name": "String",
60844
+ "ofType": null
60845
+ },
60846
+ "isDeprecated": false,
60847
+ "deprecationReason": null
60848
+ },
60849
+ {
60850
+ "name": "updatedAt",
60851
+ "description": null,
60852
+ "args": [],
60853
+ "type": {
60854
+ "kind": "SCALAR",
60855
+ "name": "DateTime",
60856
+ "ofType": null
60857
+ },
60858
+ "isDeprecated": false,
60859
+ "deprecationReason": null
60860
+ }
60861
+ ],
60862
+ "inputFields": null,
60863
+ "interfaces": [],
60864
+ "enumValues": null,
60865
+ "possibleTypes": null
60866
+ },
60867
+ {
60868
+ "kind": "OBJECT",
60869
+ "name": "PackageFeatureEntitlementMinAggregate",
60870
+ "description": null,
60871
+ "fields": [
60872
+ {
60873
+ "name": "createdAt",
60874
+ "description": null,
60875
+ "args": [],
60876
+ "type": {
60877
+ "kind": "SCALAR",
60878
+ "name": "DateTime",
60879
+ "ofType": null
60880
+ },
60881
+ "isDeprecated": false,
60882
+ "deprecationReason": null
60883
+ },
60884
+ {
60885
+ "name": "environmentId",
60886
+ "description": null,
60887
+ "args": [],
60888
+ "type": {
60889
+ "kind": "SCALAR",
60890
+ "name": "UUID",
60891
+ "ofType": null
60892
+ },
60893
+ "isDeprecated": false,
60894
+ "deprecationReason": null
60895
+ },
60896
+ {
60897
+ "name": "id",
60898
+ "description": null,
60899
+ "args": [],
60900
+ "type": {
60901
+ "kind": "SCALAR",
60902
+ "name": "UUID",
60903
+ "ofType": null
60904
+ },
60905
+ "isDeprecated": false,
60906
+ "deprecationReason": null
60907
+ },
60908
+ {
60909
+ "name": "packageId",
60910
+ "description": null,
60911
+ "args": [],
60912
+ "type": {
60913
+ "kind": "SCALAR",
60914
+ "name": "String",
60915
+ "ofType": null
60916
+ },
60917
+ "isDeprecated": false,
60918
+ "deprecationReason": null
60919
+ },
60920
+ {
60921
+ "name": "updatedAt",
60922
+ "description": null,
60923
+ "args": [],
60924
+ "type": {
60925
+ "kind": "SCALAR",
60926
+ "name": "DateTime",
60927
+ "ofType": null
60928
+ },
60929
+ "isDeprecated": false,
60930
+ "deprecationReason": null
60931
+ }
60932
+ ],
60933
+ "inputFields": null,
60934
+ "interfaces": [],
60935
+ "enumValues": null,
60936
+ "possibleTypes": null
60937
+ },
60938
+ {
60939
+ "kind": "INPUT_OBJECT",
60940
+ "name": "PackageFeatureEntitlementUpdateInput",
60941
+ "description": "Package feature entitlement update input",
60942
+ "fields": null,
60943
+ "inputFields": [
60944
+ {
60945
+ "name": "behavior",
60946
+ "description": "The behavior of the entitlement",
60947
+ "type": {
60948
+ "kind": "ENUM",
60949
+ "name": "EntitlementBehavior",
60950
+ "ofType": null
60951
+ },
60952
+ "defaultValue": null,
60953
+ "isDeprecated": false,
60954
+ "deprecationReason": null
60955
+ },
60956
+ {
60957
+ "name": "description",
60958
+ "description": "The description of the entitlement",
60959
+ "type": {
60960
+ "kind": "SCALAR",
60961
+ "name": "String",
60962
+ "ofType": null
60963
+ },
60964
+ "defaultValue": null,
60965
+ "isDeprecated": false,
60966
+ "deprecationReason": null
60967
+ },
60968
+ {
60969
+ "name": "displayNameOverride",
60970
+ "description": "The display name override of the entitlement",
60971
+ "type": {
60972
+ "kind": "SCALAR",
60973
+ "name": "String",
60974
+ "ofType": null
60975
+ },
60976
+ "defaultValue": null,
60977
+ "isDeprecated": false,
60978
+ "deprecationReason": null
60979
+ },
60980
+ {
60981
+ "name": "enumValues",
60982
+ "description": "The enum values of the entitlement",
60983
+ "type": {
60984
+ "kind": "LIST",
60985
+ "name": null,
60986
+ "ofType": {
60987
+ "kind": "NON_NULL",
60988
+ "name": null,
60989
+ "ofType": {
60990
+ "kind": "SCALAR",
60991
+ "name": "String",
60992
+ "ofType": null
60993
+ }
60994
+ }
60995
+ },
60996
+ "defaultValue": null,
60997
+ "isDeprecated": false,
60998
+ "deprecationReason": null
60999
+ },
61000
+ {
61001
+ "name": "hasSoftLimit",
61002
+ "description": "Whether the entitlement has a soft limit",
61003
+ "type": {
61004
+ "kind": "SCALAR",
61005
+ "name": "Boolean",
61006
+ "ofType": null
61007
+ },
61008
+ "defaultValue": null,
61009
+ "isDeprecated": false,
61010
+ "deprecationReason": null
61011
+ },
61012
+ {
61013
+ "name": "hasUnlimitedUsage",
61014
+ "description": "Whether the entitlement has an unlimited usage",
61015
+ "type": {
61016
+ "kind": "SCALAR",
61017
+ "name": "Boolean",
61018
+ "ofType": null
61019
+ },
61020
+ "defaultValue": null,
61021
+ "isDeprecated": false,
61022
+ "deprecationReason": null
61023
+ },
61024
+ {
61025
+ "name": "hiddenFromWidgets",
61026
+ "description": "Whether the entitlement is hidden from widgets",
61027
+ "type": {
61028
+ "kind": "LIST",
61029
+ "name": null,
61030
+ "ofType": {
61031
+ "kind": "NON_NULL",
61032
+ "name": null,
61033
+ "ofType": {
61034
+ "kind": "ENUM",
61035
+ "name": "WidgetType",
61036
+ "ofType": null
61037
+ }
61038
+ }
61039
+ },
61040
+ "defaultValue": null,
61041
+ "isDeprecated": false,
61042
+ "deprecationReason": null
61043
+ },
61044
+ {
61045
+ "name": "isCustom",
61046
+ "description": "Whether the entitlement is a custom entitlement",
61047
+ "type": {
61048
+ "kind": "SCALAR",
61049
+ "name": "Boolean",
61050
+ "ofType": null
61051
+ },
61052
+ "defaultValue": null,
61053
+ "isDeprecated": false,
61054
+ "deprecationReason": null
61055
+ },
61056
+ {
61057
+ "name": "isGranted",
61058
+ "description": "Whether entitlement grant is active",
61059
+ "type": {
61060
+ "kind": "SCALAR",
61061
+ "name": "Boolean",
61062
+ "ofType": null
61063
+ },
61064
+ "defaultValue": null,
61065
+ "isDeprecated": false,
61066
+ "deprecationReason": null
61067
+ },
61068
+ {
61069
+ "name": "monthlyResetPeriodConfiguration",
61070
+ "description": "The monthly reset period configuration of the entitlement, defined when reset period is monthly",
61071
+ "type": {
61072
+ "kind": "INPUT_OBJECT",
61073
+ "name": "MonthlyResetPeriodConfigInput",
61074
+ "ofType": null
61075
+ },
61076
+ "defaultValue": null,
61077
+ "isDeprecated": false,
61078
+ "deprecationReason": null
61079
+ },
61080
+ {
61081
+ "name": "order",
61082
+ "description": "The order of the entitlement in the entitlement list",
61083
+ "type": {
61084
+ "kind": "SCALAR",
61085
+ "name": "Float",
61086
+ "ofType": null
61087
+ },
61088
+ "defaultValue": null,
61089
+ "isDeprecated": false,
61090
+ "deprecationReason": null
61091
+ },
61092
+ {
61093
+ "name": "resetPeriod",
61094
+ "description": "The reset period of the entitlement",
61095
+ "type": {
61096
+ "kind": "ENUM",
61097
+ "name": "EntitlementResetPeriod",
61098
+ "ofType": null
61099
+ },
61100
+ "defaultValue": null,
61101
+ "isDeprecated": false,
61102
+ "deprecationReason": null
61103
+ },
61104
+ {
61105
+ "name": "usageLimit",
61106
+ "description": "The usage limit of the entitlement",
61107
+ "type": {
61108
+ "kind": "SCALAR",
61109
+ "name": "Float",
61110
+ "ofType": null
61111
+ },
61112
+ "defaultValue": null,
61113
+ "isDeprecated": false,
61114
+ "deprecationReason": null
61115
+ },
61116
+ {
61117
+ "name": "weeklyResetPeriodConfiguration",
61118
+ "description": "The weekly reset period configuration of the entitlement, defined when reset period is weekly",
61119
+ "type": {
61120
+ "kind": "INPUT_OBJECT",
61121
+ "name": "WeeklyResetPeriodConfigInput",
61122
+ "ofType": null
61123
+ },
61124
+ "defaultValue": null,
61125
+ "isDeprecated": false,
61126
+ "deprecationReason": null
61127
+ },
61128
+ {
61129
+ "name": "yearlyResetPeriodConfiguration",
61130
+ "description": "The yearly reset period configuration of the entitlement, defined when reset period is yearly",
61131
+ "type": {
61132
+ "kind": "INPUT_OBJECT",
61133
+ "name": "YearlyResetPeriodConfigInput",
61134
+ "ofType": null
61135
+ },
61136
+ "defaultValue": null,
61137
+ "isDeprecated": false,
61138
+ "deprecationReason": null
61139
+ }
61140
+ ],
61141
+ "interfaces": null,
61142
+ "enumValues": null,
61143
+ "possibleTypes": null
61144
+ },
61145
+ {
61146
+ "kind": "OBJECT",
61147
+ "name": "PackageGroup",
61148
+ "description": "A set of addons bundled together",
61149
+ "fields": [
61150
+ {
61151
+ "name": "addons",
61152
+ "description": null,
61153
+ "args": [
61154
+ {
61155
+ "name": "filter",
61156
+ "description": "Specify to filter the records returned.",
61157
+ "type": {
61158
+ "kind": "INPUT_OBJECT",
61159
+ "name": "AddonFilter",
61160
+ "ofType": null
61161
+ },
61162
+ "defaultValue": "{}",
61163
+ "isDeprecated": false,
61164
+ "deprecationReason": null
61165
+ },
61166
+ {
61167
+ "name": "sorting",
61168
+ "description": "Specify to sort results.",
61169
+ "type": {
61170
+ "kind": "LIST",
61171
+ "name": null,
61172
+ "ofType": {
61173
+ "kind": "NON_NULL",
61174
+ "name": null,
61175
+ "ofType": {
61176
+ "kind": "INPUT_OBJECT",
61177
+ "name": "AddonSort",
61178
+ "ofType": null
61179
+ }
61180
+ }
61181
+ },
61182
+ "defaultValue": "[{direction: DESC, field: createdAt}]",
61183
+ "isDeprecated": false,
61184
+ "deprecationReason": null
61185
+ }
61186
+ ],
61187
+ "type": {
61188
+ "kind": "LIST",
61189
+ "name": null,
61190
+ "ofType": {
61191
+ "kind": "NON_NULL",
61192
+ "name": null,
61193
+ "ofType": {
61194
+ "kind": "OBJECT",
61195
+ "name": "Addon",
61196
+ "ofType": null
61197
+ }
61198
+ }
61199
+ },
61200
+ "isDeprecated": false,
61201
+ "deprecationReason": null
61202
+ },
61203
+ {
61204
+ "name": "createdAt",
61205
+ "description": "Timestamp of when the record was created",
61206
+ "args": [],
61207
+ "type": {
61208
+ "kind": "NON_NULL",
61209
+ "name": null,
61210
+ "ofType": {
61211
+ "kind": "SCALAR",
61212
+ "name": "DateTime",
61213
+ "ofType": null
61214
+ }
61215
+ },
61216
+ "isDeprecated": false,
61217
+ "deprecationReason": null
61218
+ },
61219
+ {
61220
+ "name": "description",
61221
+ "description": "The description of the package group",
61222
+ "args": [],
61223
+ "type": {
61224
+ "kind": "SCALAR",
61225
+ "name": "String",
61226
+ "ofType": null
61227
+ },
61228
+ "isDeprecated": false,
61229
+ "deprecationReason": null
61230
+ },
61231
+ {
61232
+ "name": "displayName",
61233
+ "description": "The display name of the package group",
61234
+ "args": [],
61235
+ "type": {
61236
+ "kind": "NON_NULL",
61237
+ "name": null,
61238
+ "ofType": {
61239
+ "kind": "SCALAR",
61240
+ "name": "String",
61241
+ "ofType": null
59878
61242
  }
59879
61243
  },
59880
61244
  "isDeprecated": false,
@@ -64195,8 +65559,8 @@
64195
65559
  }
64196
65560
  }
64197
65561
  },
64198
- "isDeprecated": false,
64199
- "deprecationReason": null
65562
+ "isDeprecated": true,
65563
+ "deprecationReason": "Use 'packageEntitlements' field instead"
64200
65564
  },
64201
65565
  {
64202
65566
  "name": "environment",
@@ -64296,6 +65660,39 @@
64296
65660
  }
64297
65661
  }
64298
65662
  },
65663
+ "isDeprecated": true,
65664
+ "deprecationReason": "Use 'inheritedPackageEntitlements' field instead"
65665
+ },
65666
+ {
65667
+ "name": "inheritedPackageEntitlements",
65668
+ "description": "List of inherited entitlements for the plan",
65669
+ "args": [
65670
+ {
65671
+ "name": "includeOverridden",
65672
+ "description": "Indicates if inherited entitlements include overridden entitlements",
65673
+ "type": {
65674
+ "kind": "SCALAR",
65675
+ "name": "Boolean",
65676
+ "ofType": null
65677
+ },
65678
+ "defaultValue": "false",
65679
+ "isDeprecated": false,
65680
+ "deprecationReason": null
65681
+ }
65682
+ ],
65683
+ "type": {
65684
+ "kind": "LIST",
65685
+ "name": null,
65686
+ "ofType": {
65687
+ "kind": "NON_NULL",
65688
+ "name": null,
65689
+ "ofType": {
65690
+ "kind": "UNION",
65691
+ "name": "PackageEntitlementUnion",
65692
+ "ofType": null
65693
+ }
65694
+ }
65695
+ },
64299
65696
  "isDeprecated": false,
64300
65697
  "deprecationReason": null
64301
65698
  },
@@ -64391,6 +65788,26 @@
64391
65788
  "isDeprecated": false,
64392
65789
  "deprecationReason": null
64393
65790
  },
65791
+ {
65792
+ "name": "packageEntitlements",
65793
+ "description": "List of entitlements for the plan",
65794
+ "args": [],
65795
+ "type": {
65796
+ "kind": "LIST",
65797
+ "name": null,
65798
+ "ofType": {
65799
+ "kind": "NON_NULL",
65800
+ "name": null,
65801
+ "ofType": {
65802
+ "kind": "UNION",
65803
+ "name": "PackageEntitlementUnion",
65804
+ "ofType": null
65805
+ }
65806
+ }
65807
+ },
65808
+ "isDeprecated": false,
65809
+ "deprecationReason": null
65810
+ },
64394
65811
  {
64395
65812
  "name": "prices",
64396
65813
  "description": "List of prices for the plan",
@@ -100719,6 +102136,45 @@
100719
102136
  "enumValues": null,
100720
102137
  "possibleTypes": null
100721
102138
  },
102139
+ {
102140
+ "kind": "INPUT_OBJECT",
102141
+ "name": "UpdatePackageEntitlementInput",
102142
+ "description": "Update package entitlement input",
102143
+ "fields": null,
102144
+ "inputFields": [
102145
+ {
102146
+ "name": "feature",
102147
+ "description": "Package feature entitlement update input",
102148
+ "type": {
102149
+ "kind": "INPUT_OBJECT",
102150
+ "name": "PackageFeatureEntitlementUpdateInput",
102151
+ "ofType": null
102152
+ },
102153
+ "defaultValue": null,
102154
+ "isDeprecated": false,
102155
+ "deprecationReason": null
102156
+ },
102157
+ {
102158
+ "name": "id",
102159
+ "description": "Unique identifier for the entity",
102160
+ "type": {
102161
+ "kind": "NON_NULL",
102162
+ "name": null,
102163
+ "ofType": {
102164
+ "kind": "SCALAR",
102165
+ "name": "UUID",
102166
+ "ofType": null
102167
+ }
102168
+ },
102169
+ "defaultValue": null,
102170
+ "isDeprecated": false,
102171
+ "deprecationReason": null
102172
+ }
102173
+ ],
102174
+ "interfaces": null,
102175
+ "enumValues": null,
102176
+ "possibleTypes": null
102177
+ },
100722
102178
  {
100723
102179
  "kind": "INPUT_OBJECT",
100724
102180
  "name": "UpdatePackageEntitlementOrderInput",