@code0-tech/sagittarius-graphql-types 0.0.0-56198dce107a9c09cc5eca0773f239d9c3eba598 → 0.0.0-6dff4363750d2fd791eeeb1c03332895dfebcdcc

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.
Files changed (2) hide show
  1. package/index.d.ts +185 -45
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -168,16 +168,6 @@ export interface DataTypeIdentifier {
168
168
  updatedAt?: Maybe<Scalars['Time']['output']>;
169
169
  }
170
170
 
171
- /** Input type for data type identifier */
172
- export interface DataTypeIdentifierInput {
173
- /** Data type ID */
174
- dataTypeId?: InputMaybe<Scalars['DataTypeID']['input']>;
175
- /** Generic key value */
176
- genericKey?: InputMaybe<Scalars['String']['input']>;
177
- /** Generic type information */
178
- genericType?: InputMaybe<GenericTypeInput>;
179
- }
180
-
181
171
  /** Represents a rule that can be applied to a data type. */
182
172
  export interface DataTypeRule {
183
173
  __typename?: 'DataTypeRule';
@@ -425,6 +415,8 @@ export interface Flow {
425
415
  id?: Maybe<Scalars['FlowID']['output']>;
426
416
  /** The input data type of the flow */
427
417
  inputType?: Maybe<DataType>;
418
+ /** Name of the flow */
419
+ name?: Maybe<Scalars['String']['output']>;
428
420
  /** Nodes of the flow */
429
421
  nodes?: Maybe<NodeFunctionConnection>;
430
422
  /** The return data type of the flow */
@@ -437,6 +429,8 @@ export interface Flow {
437
429
  type?: Maybe<FlowType>;
438
430
  /** Time when this Flow was last updated */
439
431
  updatedAt?: Maybe<Scalars['Time']['output']>;
432
+ /** Abilities for the current user on this Flow */
433
+ userAbilities?: Maybe<FlowUserAbilities>;
440
434
  }
441
435
 
442
436
 
@@ -481,6 +475,8 @@ export interface FlowEdge {
481
475
 
482
476
  /** Input type for creating or updating a flow */
483
477
  export interface FlowInput {
478
+ /** The name of the flow */
479
+ name: Scalars['String']['input'];
484
480
  /** The settings of the flow */
485
481
  settings?: InputMaybe<Array<FlowSettingInput>>;
486
482
  /** The starting node of the flow */
@@ -640,6 +636,13 @@ export interface FlowTypeSettingNamesArgs {
640
636
  last?: InputMaybe<Scalars['Int']['input']>;
641
637
  }
642
638
 
639
+ /** Abilities for the current user on this Flow */
640
+ export interface FlowUserAbilities {
641
+ __typename?: 'FlowUserAbilities';
642
+ /** Shows if the current user has the `delete_flow` ability on this Flow */
643
+ deleteFlow?: Maybe<Scalars['Boolean']['output']>;
644
+ }
645
+
643
646
  /** Represents a function definition */
644
647
  export interface FunctionDefinition {
645
648
  __typename?: 'FunctionDefinition';
@@ -778,14 +781,6 @@ export interface GenericMapper {
778
781
  updatedAt?: Maybe<Scalars['Time']['output']>;
779
782
  }
780
783
 
781
- /** Input type for generic mappers */
782
- export interface GenericMapperInput {
783
- /** The source data type identifier for the mapper */
784
- sources: Array<DataTypeIdentifierInput>;
785
- /** The target data type identifier for the mapper */
786
- target: Scalars['String']['input'];
787
- }
788
-
789
784
  /** Represents a generic type that can be used in various contexts. */
790
785
  export interface GenericType {
791
786
  __typename?: 'GenericType';
@@ -801,20 +796,29 @@ export interface GenericType {
801
796
  updatedAt?: Maybe<Scalars['Time']['output']>;
802
797
  }
803
798
 
804
- /** Input type for generic type operations. */
805
- export interface GenericTypeInput {
806
- /** The data type associated with this generic type. */
807
- dataTypeId: Scalars['DataTypeID']['input'];
808
- /** The mappers associated with this generic type. */
809
- genericMappers: Array<GenericMapperInput>;
810
- }
811
-
812
799
  /** Represents the input for external user identity validation */
813
800
  export interface IdentityInput {
814
801
  /** This validation code will be used for the oAuth validation process */
815
802
  code?: InputMaybe<Scalars['String']['input']>;
816
803
  }
817
804
 
805
+ /** Abilities for the current user on this Instance */
806
+ export interface InstanceUserAbilities {
807
+ __typename?: 'InstanceUserAbilities';
808
+ /** Shows if the current user has the `create_organization` ability on this Instance */
809
+ createOrganization?: Maybe<Scalars['Boolean']['output']>;
810
+ /** Shows if the current user has the `create_runtime` ability on this Instance */
811
+ createRuntime?: Maybe<Scalars['Boolean']['output']>;
812
+ /** Shows if the current user has the `delete_runtime` ability on this Instance */
813
+ deleteRuntime?: Maybe<Scalars['Boolean']['output']>;
814
+ /** Shows if the current user has the `rotate_runtime_token` ability on this Instance */
815
+ rotateRuntimeToken?: Maybe<Scalars['Boolean']['output']>;
816
+ /** Shows if the current user has the `update_application_setting` ability on this Instance */
817
+ updateApplicationSetting?: Maybe<Scalars['Boolean']['output']>;
818
+ /** Shows if the current user has the `update_runtime` ability on this Instance */
819
+ updateRuntime?: Maybe<Scalars['Boolean']['output']>;
820
+ }
821
+
818
822
  /** Represents a literal value, such as a string or number. */
819
823
  export interface LiteralValue {
820
824
  __typename?: 'LiteralValue';
@@ -1177,6 +1181,8 @@ export interface Namespace {
1177
1181
  __typename?: 'Namespace';
1178
1182
  /** Time when this Namespace was created */
1179
1183
  createdAt?: Maybe<Scalars['Time']['output']>;
1184
+ /** (EE only) Currently active license of the namespace */
1185
+ currentNamespaceLicense?: Maybe<NamespaceLicense>;
1180
1186
  /** Global ID of this Namespace */
1181
1187
  id?: Maybe<Scalars['NamespaceID']['output']>;
1182
1188
  /** Members of the namespace */
@@ -1193,6 +1199,8 @@ export interface Namespace {
1193
1199
  runtimes?: Maybe<RuntimeConnection>;
1194
1200
  /** Time when this Namespace was last updated */
1195
1201
  updatedAt?: Maybe<Scalars['Time']['output']>;
1202
+ /** Abilities for the current user on this Namespace */
1203
+ userAbilities?: Maybe<NamespaceUserAbilities>;
1196
1204
  }
1197
1205
 
1198
1206
 
@@ -1257,6 +1265,8 @@ export interface NamespaceLicense {
1257
1265
  startDate?: Maybe<Scalars['Time']['output']>;
1258
1266
  /** Time when this NamespaceLicense was last updated */
1259
1267
  updatedAt?: Maybe<Scalars['Time']['output']>;
1268
+ /** Abilities for the current user on this NamespaceLicense */
1269
+ userAbilities?: Maybe<NamespaceLicenseUserAbilities>;
1260
1270
  }
1261
1271
 
1262
1272
  /** The connection type for NamespaceLicense. */
@@ -1281,6 +1291,13 @@ export interface NamespaceLicenseEdge {
1281
1291
  node?: Maybe<NamespaceLicense>;
1282
1292
  }
1283
1293
 
1294
+ /** Abilities for the current user on this NamespaceLicense */
1295
+ export interface NamespaceLicenseUserAbilities {
1296
+ __typename?: 'NamespaceLicenseUserAbilities';
1297
+ /** Shows if the current user has the `delete_namespace_license` ability on this NamespaceLicense */
1298
+ deleteNamespaceLicense?: Maybe<Scalars['Boolean']['output']>;
1299
+ }
1300
+
1284
1301
  /** Represents a namespace member */
1285
1302
  export interface NamespaceMember {
1286
1303
  __typename?: 'NamespaceMember';
@@ -1298,6 +1315,8 @@ export interface NamespaceMember {
1298
1315
  updatedAt?: Maybe<Scalars['Time']['output']>;
1299
1316
  /** User this member belongs to */
1300
1317
  user?: Maybe<User>;
1318
+ /** Abilities for the current user on this NamespaceMember */
1319
+ userAbilities?: Maybe<NamespaceMemberUserAbilities>;
1301
1320
  }
1302
1321
 
1303
1322
 
@@ -1377,6 +1396,15 @@ export interface NamespaceMemberRoleEdge {
1377
1396
  node?: Maybe<NamespaceMemberRole>;
1378
1397
  }
1379
1398
 
1399
+ /** Abilities for the current user on this NamespaceMember */
1400
+ export interface NamespaceMemberUserAbilities {
1401
+ __typename?: 'NamespaceMemberUserAbilities';
1402
+ /** Shows if the current user has the `assign_member_roles` ability on this NamespaceMember */
1403
+ assignMemberRoles?: Maybe<Scalars['Boolean']['output']>;
1404
+ /** Shows if the current user has the `delete_member` ability on this NamespaceMember */
1405
+ deleteMember?: Maybe<Scalars['Boolean']['output']>;
1406
+ }
1407
+
1380
1408
  /** Objects that can present a namespace */
1381
1409
  export type NamespaceParent = Organization | User;
1382
1410
 
@@ -1403,6 +1431,8 @@ export interface NamespaceProject {
1403
1431
  runtimes?: Maybe<RuntimeConnection>;
1404
1432
  /** Time when this NamespaceProject was last updated */
1405
1433
  updatedAt?: Maybe<Scalars['Time']['output']>;
1434
+ /** Abilities for the current user on this NamespaceProject */
1435
+ userAbilities?: Maybe<NamespaceProjectUserAbilities>;
1406
1436
  }
1407
1437
 
1408
1438
 
@@ -1451,6 +1481,19 @@ export interface NamespaceProjectEdge {
1451
1481
  node?: Maybe<NamespaceProject>;
1452
1482
  }
1453
1483
 
1484
+ /** Abilities for the current user on this NamespaceProject */
1485
+ export interface NamespaceProjectUserAbilities {
1486
+ __typename?: 'NamespaceProjectUserAbilities';
1487
+ /** Shows if the current user has the `assign_project_runtimes` ability on this NamespaceProject */
1488
+ assignProjectRuntimes?: Maybe<Scalars['Boolean']['output']>;
1489
+ /** Shows if the current user has the `create_flow` ability on this NamespaceProject */
1490
+ createFlow?: Maybe<Scalars['Boolean']['output']>;
1491
+ /** Shows if the current user has the `delete_namespace_project` ability on this NamespaceProject */
1492
+ deleteNamespaceProject?: Maybe<Scalars['Boolean']['output']>;
1493
+ /** Shows if the current user has the `update_namespace_project` ability on this NamespaceProject */
1494
+ updateNamespaceProject?: Maybe<Scalars['Boolean']['output']>;
1495
+ }
1496
+
1454
1497
  /** Represents a namespace role. */
1455
1498
  export interface NamespaceRole {
1456
1499
  __typename?: 'NamespaceRole';
@@ -1468,6 +1511,8 @@ export interface NamespaceRole {
1468
1511
  namespace?: Maybe<Namespace>;
1469
1512
  /** Time when this NamespaceRole was last updated */
1470
1513
  updatedAt?: Maybe<Scalars['Time']['output']>;
1514
+ /** Abilities for the current user on this NamespaceRole */
1515
+ userAbilities?: Maybe<NamespaceRoleUserAbilities>;
1471
1516
  }
1472
1517
 
1473
1518
 
@@ -1490,7 +1535,7 @@ export const enum NamespaceRoleAbility {
1490
1535
  /** Allows to change the assigned projects of a namespace role */
1491
1536
  AssignRoleProjects = 'ASSIGN_ROLE_PROJECTS',
1492
1537
  /** Allows to create flows in a namespace project */
1493
- CreateFlows = 'CREATE_FLOWS',
1538
+ CreateFlow = 'CREATE_FLOW',
1494
1539
  /** Allows to create a license for the namespace */
1495
1540
  CreateNamespaceLicense = 'CREATE_NAMESPACE_LICENSE',
1496
1541
  /** Allows to create a project in the namespace */
@@ -1500,7 +1545,7 @@ export const enum NamespaceRoleAbility {
1500
1545
  /** Allows to create a runtime globally or for the namespace */
1501
1546
  CreateRuntime = 'CREATE_RUNTIME',
1502
1547
  /** Allows to delete flows in a namespace project */
1503
- DeleteFlows = 'DELETE_FLOWS',
1548
+ DeleteFlow = 'DELETE_FLOW',
1504
1549
  /** Allows to remove members of a namespace */
1505
1550
  DeleteMember = 'DELETE_MEMBER',
1506
1551
  /** Allows to delete the license of the namespace */
@@ -1524,7 +1569,7 @@ export const enum NamespaceRoleAbility {
1524
1569
  /** Allows to regenerate a runtime token */
1525
1570
  RotateRuntimeToken = 'ROTATE_RUNTIME_TOKEN',
1526
1571
  /** Allows to update flows in the project */
1527
- UpdateFlows = 'UPDATE_FLOWS',
1572
+ UpdateFlow = 'UPDATE_FLOW',
1528
1573
  /** Allows to update the project of the namespace */
1529
1574
  UpdateNamespaceProject = 'UPDATE_NAMESPACE_PROJECT',
1530
1575
  /** Allows to update the namespace role */
@@ -1557,6 +1602,34 @@ export interface NamespaceRoleEdge {
1557
1602
  node?: Maybe<NamespaceRole>;
1558
1603
  }
1559
1604
 
1605
+ /** Abilities for the current user on this NamespaceRole */
1606
+ export interface NamespaceRoleUserAbilities {
1607
+ __typename?: 'NamespaceRoleUserAbilities';
1608
+ /** Shows if the current user has the `assign_role_abilities` ability on this NamespaceRole */
1609
+ assignRoleAbilities?: Maybe<Scalars['Boolean']['output']>;
1610
+ /** Shows if the current user has the `assign_role_projects` ability on this NamespaceRole */
1611
+ assignRoleProjects?: Maybe<Scalars['Boolean']['output']>;
1612
+ /** Shows if the current user has the `delete_namespace_role` ability on this NamespaceRole */
1613
+ deleteNamespaceRole?: Maybe<Scalars['Boolean']['output']>;
1614
+ /** Shows if the current user has the `update_namespace_role` ability on this NamespaceRole */
1615
+ updateNamespaceRole?: Maybe<Scalars['Boolean']['output']>;
1616
+ }
1617
+
1618
+ /** Abilities for the current user on this Namespace */
1619
+ export interface NamespaceUserAbilities {
1620
+ __typename?: 'NamespaceUserAbilities';
1621
+ /** Shows if the current user has the `create_namespace_license` ability on this Namespace */
1622
+ createNamespaceLicense?: Maybe<Scalars['Boolean']['output']>;
1623
+ /** Shows if the current user has the `create_namespace_project` ability on this Namespace */
1624
+ createNamespaceProject?: Maybe<Scalars['Boolean']['output']>;
1625
+ /** Shows if the current user has the `create_namespace_role` ability on this Namespace */
1626
+ createNamespaceRole?: Maybe<Scalars['Boolean']['output']>;
1627
+ /** Shows if the current user has the `create_runtime` ability on this Namespace */
1628
+ createRuntime?: Maybe<Scalars['Boolean']['output']>;
1629
+ /** Shows if the current user has the `invite_member` ability on this Namespace */
1630
+ inviteMember?: Maybe<Scalars['Boolean']['output']>;
1631
+ }
1632
+
1560
1633
  /** Autogenerated input type of NamespacesLicensesCreate */
1561
1634
  export interface NamespacesLicensesCreateInput {
1562
1635
  /** A unique identifier for the client performing the mutation. */
@@ -2024,6 +2097,39 @@ export interface Organization {
2024
2097
  namespace?: Maybe<Namespace>;
2025
2098
  /** Time when this Organization was last updated */
2026
2099
  updatedAt?: Maybe<Scalars['Time']['output']>;
2100
+ /** Abilities for the current user on this Organization */
2101
+ userAbilities?: Maybe<OrganizationUserAbilities>;
2102
+ }
2103
+
2104
+ /** The connection type for Organization. */
2105
+ export interface OrganizationConnection {
2106
+ __typename?: 'OrganizationConnection';
2107
+ /** Total count of collection. */
2108
+ count?: Maybe<Scalars['Int']['output']>;
2109
+ /** A list of edges. */
2110
+ edges?: Maybe<Array<Maybe<OrganizationEdge>>>;
2111
+ /** A list of nodes. */
2112
+ nodes?: Maybe<Array<Maybe<Organization>>>;
2113
+ /** Information to aid in pagination. */
2114
+ pageInfo?: Maybe<PageInfo>;
2115
+ }
2116
+
2117
+ /** An edge in a connection. */
2118
+ export interface OrganizationEdge {
2119
+ __typename?: 'OrganizationEdge';
2120
+ /** A cursor for use in pagination. */
2121
+ cursor?: Maybe<Scalars['String']['output']>;
2122
+ /** The item at the end of the edge. */
2123
+ node?: Maybe<Organization>;
2124
+ }
2125
+
2126
+ /** Abilities for the current user on this Organization */
2127
+ export interface OrganizationUserAbilities {
2128
+ __typename?: 'OrganizationUserAbilities';
2129
+ /** Shows if the current user has the `delete_organization` ability on this Organization */
2130
+ deleteOrganization?: Maybe<Scalars['Boolean']['output']>;
2131
+ /** Shows if the current user has the `update_organization` ability on this Organization */
2132
+ updateOrganization?: Maybe<Scalars['Boolean']['output']>;
2027
2133
  }
2028
2134
 
2029
2135
  /** Autogenerated input type of OrganizationsCreate */
@@ -2189,6 +2295,10 @@ export interface Query {
2189
2295
  nodes?: Maybe<Array<Maybe<Node>>>;
2190
2296
  /** Find a organization */
2191
2297
  organization?: Maybe<Organization>;
2298
+ /** Find organizations */
2299
+ organizations?: Maybe<OrganizationConnection>;
2300
+ /** Abilities for the current user on this Instance */
2301
+ userAbilities?: Maybe<InstanceUserAbilities>;
2192
2302
  /** Find users */
2193
2303
  users?: Maybe<UserConnection>;
2194
2304
  }
@@ -2234,6 +2344,15 @@ export interface QueryOrganizationArgs {
2234
2344
  }
2235
2345
 
2236
2346
 
2347
+ /** Root Query type */
2348
+ export interface QueryOrganizationsArgs {
2349
+ after?: InputMaybe<Scalars['String']['input']>;
2350
+ before?: InputMaybe<Scalars['String']['input']>;
2351
+ first?: InputMaybe<Scalars['Int']['input']>;
2352
+ last?: InputMaybe<Scalars['Int']['input']>;
2353
+ }
2354
+
2355
+
2237
2356
  /** Root Query type */
2238
2357
  export interface QueryUsersArgs {
2239
2358
  after?: InputMaybe<Scalars['String']['input']>;
@@ -2270,34 +2389,22 @@ export interface ReferenceValue {
2270
2389
  __typename?: 'ReferenceValue';
2271
2390
  /** Time when this ReferenceValue was created */
2272
2391
  createdAt?: Maybe<Scalars['Time']['output']>;
2273
- /** The identifier of the data type this reference value belongs to. */
2274
- dataTypeIdentifier?: Maybe<DataTypeIdentifier>;
2275
- /** The depth of the reference value. */
2276
- depth?: Maybe<Scalars['Int']['output']>;
2277
2392
  /** Global ID of this ReferenceValue */
2278
2393
  id?: Maybe<Scalars['ReferenceValueID']['output']>;
2279
- /** The node of the reference value. */
2280
- node?: Maybe<Scalars['Int']['output']>;
2394
+ /** The referenced value. */
2395
+ nodeFunction?: Maybe<NodeFunction>;
2281
2396
  /** The paths associated with this reference value. */
2282
2397
  referencePath?: Maybe<Array<ReferencePath>>;
2283
- /** The scope of the reference value. */
2284
- scope?: Maybe<Array<Scalars['Int']['output']>>;
2285
2398
  /** Time when this ReferenceValue was last updated */
2286
2399
  updatedAt?: Maybe<Scalars['Time']['output']>;
2287
2400
  }
2288
2401
 
2289
2402
  /** Input type for reference value */
2290
2403
  export interface ReferenceValueInput {
2291
- /** The identifier of the data type this reference value belongs to */
2292
- dataTypeIdentifier: DataTypeIdentifierInput;
2293
- /** The primary level of the reference value */
2294
- primaryLevel: Scalars['Int']['input'];
2404
+ /** The referenced value */
2405
+ nodeFunction: Scalars['NodeFunctionID']['input'];
2295
2406
  /** The paths associated with this reference value */
2296
2407
  referencePath: Array<ReferencePathInput>;
2297
- /** The secondary level of the reference value */
2298
- secondaryLevel: Scalars['Int']['input'];
2299
- /** The tertiary level of the reference value */
2300
- tertiaryLevel?: InputMaybe<Scalars['Int']['input']>;
2301
2408
  }
2302
2409
 
2303
2410
  /** Represents a runtime */
@@ -2325,6 +2432,8 @@ export interface Runtime {
2325
2432
  token?: Maybe<Scalars['String']['output']>;
2326
2433
  /** Time when this Runtime was last updated */
2327
2434
  updatedAt?: Maybe<Scalars['Time']['output']>;
2435
+ /** Abilities for the current user on this Runtime */
2436
+ userAbilities?: Maybe<RuntimeUserAbilities>;
2328
2437
  }
2329
2438
 
2330
2439
 
@@ -2454,6 +2563,17 @@ export const enum RuntimeStatusType {
2454
2563
  Disconnected = 'DISCONNECTED'
2455
2564
  }
2456
2565
 
2566
+ /** Abilities for the current user on this Runtime */
2567
+ export interface RuntimeUserAbilities {
2568
+ __typename?: 'RuntimeUserAbilities';
2569
+ /** Shows if the current user has the `delete_runtime` ability on this Runtime */
2570
+ deleteRuntime?: Maybe<Scalars['Boolean']['output']>;
2571
+ /** Shows if the current user has the `rotate_runtime_token` ability on this Runtime */
2572
+ rotateRuntimeToken?: Maybe<Scalars['Boolean']['output']>;
2573
+ /** Shows if the current user has the `update_runtime` ability on this Runtime */
2574
+ updateRuntime?: Maybe<Scalars['Boolean']['output']>;
2575
+ }
2576
+
2457
2577
  /** Autogenerated input type of RuntimesCreate */
2458
2578
  export interface RuntimesCreateInput {
2459
2579
  /** A unique identifier for the client performing the mutation. */
@@ -2598,6 +2718,8 @@ export interface User {
2598
2718
  sessions?: Maybe<UserSessionConnection>;
2599
2719
  /** Time when this User was last updated */
2600
2720
  updatedAt?: Maybe<Scalars['Time']['output']>;
2721
+ /** Abilities for the current user on this User */
2722
+ userAbilities?: Maybe<UserUserAbilities>;
2601
2723
  /** Username of the user */
2602
2724
  username?: Maybe<Scalars['String']['output']>;
2603
2725
  }
@@ -2705,6 +2827,8 @@ export interface UserSession {
2705
2827
  updatedAt?: Maybe<Scalars['Time']['output']>;
2706
2828
  /** User that belongs to the session */
2707
2829
  user?: Maybe<User>;
2830
+ /** Abilities for the current user on this UserSession */
2831
+ userAbilities?: Maybe<UserSessionUserAbilities>;
2708
2832
  }
2709
2833
 
2710
2834
  /** The connection type for UserSession. */
@@ -2729,6 +2853,22 @@ export interface UserSessionEdge {
2729
2853
  node?: Maybe<UserSession>;
2730
2854
  }
2731
2855
 
2856
+ /** Abilities for the current user on this UserSession */
2857
+ export interface UserSessionUserAbilities {
2858
+ __typename?: 'UserSessionUserAbilities';
2859
+ /** Shows if the current user has the `logout_session` ability on this UserSession */
2860
+ logoutSession?: Maybe<Scalars['Boolean']['output']>;
2861
+ }
2862
+
2863
+ /** Abilities for the current user on this User */
2864
+ export interface UserUserAbilities {
2865
+ __typename?: 'UserUserAbilities';
2866
+ /** Shows if the current user has the `manage_mfa` ability on this User */
2867
+ manageMfa?: Maybe<Scalars['Boolean']['output']>;
2868
+ /** Shows if the current user has the `update_user` ability on this User */
2869
+ updateUser?: Maybe<Scalars['Boolean']['output']>;
2870
+ }
2871
+
2732
2872
  /** Autogenerated input type of UsersEmailVerification */
2733
2873
  export interface UsersEmailVerificationInput {
2734
2874
  /** A unique identifier for the client performing the mutation. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code0-tech/sagittarius-graphql-types",
3
- "version": "0.0.0-56198dce107a9c09cc5eca0773f239d9c3eba598",
3
+ "version": "0.0.0-6dff4363750d2fd791eeeb1c03332895dfebcdcc",
4
4
  "description": "",
5
5
  "main": "index.d.ts",
6
6
  "types": "index.d.ts",