@seamapi/types 1.837.0 → 1.838.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.
- package/dist/connect.cjs +122 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +429 -0
- package/dist/index.cjs +122 -1
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/acs/acs-credentials/pending-mutations.d.ts +101 -0
- package/lib/seam/connect/models/acs/acs-credentials/pending-mutations.js +19 -1
- package/lib/seam/connect/models/acs/acs-credentials/pending-mutations.js.map +1 -1
- package/lib/seam/connect/models/acs/acs-users/acs-user.d.ts +118 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.d.ts +101 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js +30 -0
- package/lib/seam/connect/models/acs/acs-users/pending-mutations.js.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +158 -0
- package/lib/seam/connect/openapi.js +106 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +153 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-credentials/pending-mutations.ts +24 -1
- package/src/lib/seam/connect/models/acs/acs-users/pending-mutations.ts +35 -0
- package/src/lib/seam/connect/openapi.ts +112 -0
- package/src/lib/seam/connect/route-types.ts +162 -0
|
@@ -19021,6 +19021,23 @@ export type Routes = {
|
|
|
19021
19021
|
acs_access_group_id: string;
|
|
19022
19022
|
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
19023
19023
|
variant: 'adding' | 'removing';
|
|
19024
|
+
} | {
|
|
19025
|
+
/** Date and time at which the mutation was created. */
|
|
19026
|
+
created_at: string;
|
|
19027
|
+
/** Detailed description of the mutation. */
|
|
19028
|
+
message: string;
|
|
19029
|
+
/** Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system. */
|
|
19030
|
+
mutation_code: 'updating_credential_assignment';
|
|
19031
|
+
/** Previous credential assignment. */
|
|
19032
|
+
from: {
|
|
19033
|
+
/** Previous credential ID. */
|
|
19034
|
+
acs_credential_id: string | null;
|
|
19035
|
+
};
|
|
19036
|
+
/** New credential assignment. */
|
|
19037
|
+
to: {
|
|
19038
|
+
/** New credential ID. */
|
|
19039
|
+
acs_credential_id: string | null;
|
|
19040
|
+
};
|
|
19024
19041
|
})[] | undefined;
|
|
19025
19042
|
/** The last time an internal sync job completed for this access system user. */
|
|
19026
19043
|
last_successful_sync_at: string | null;
|
|
@@ -26546,6 +26563,23 @@ export type Routes = {
|
|
|
26546
26563
|
acs_access_group_id: string;
|
|
26547
26564
|
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
26548
26565
|
variant: 'adding' | 'removing';
|
|
26566
|
+
} | {
|
|
26567
|
+
/** Date and time at which the mutation was created. */
|
|
26568
|
+
created_at: string;
|
|
26569
|
+
/** Detailed description of the mutation. */
|
|
26570
|
+
message: string;
|
|
26571
|
+
/** Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system. */
|
|
26572
|
+
mutation_code: 'updating_credential_assignment';
|
|
26573
|
+
/** Previous credential assignment. */
|
|
26574
|
+
from: {
|
|
26575
|
+
/** Previous credential ID. */
|
|
26576
|
+
acs_credential_id: string | null;
|
|
26577
|
+
};
|
|
26578
|
+
/** New credential assignment. */
|
|
26579
|
+
to: {
|
|
26580
|
+
/** New credential ID. */
|
|
26581
|
+
acs_credential_id: string | null;
|
|
26582
|
+
};
|
|
26549
26583
|
})[] | undefined;
|
|
26550
26584
|
/** The last time an internal sync job completed for this access system user. */
|
|
26551
26585
|
last_successful_sync_at: string | null;
|
|
@@ -26821,6 +26855,23 @@ export type Routes = {
|
|
|
26821
26855
|
acs_access_group_id: string;
|
|
26822
26856
|
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
26823
26857
|
variant: 'adding' | 'removing';
|
|
26858
|
+
} | {
|
|
26859
|
+
/** Date and time at which the mutation was created. */
|
|
26860
|
+
created_at: string;
|
|
26861
|
+
/** Detailed description of the mutation. */
|
|
26862
|
+
message: string;
|
|
26863
|
+
/** Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system. */
|
|
26864
|
+
mutation_code: 'updating_credential_assignment';
|
|
26865
|
+
/** Previous credential assignment. */
|
|
26866
|
+
from: {
|
|
26867
|
+
/** Previous credential ID. */
|
|
26868
|
+
acs_credential_id: string | null;
|
|
26869
|
+
};
|
|
26870
|
+
/** New credential assignment. */
|
|
26871
|
+
to: {
|
|
26872
|
+
/** New credential ID. */
|
|
26873
|
+
acs_credential_id: string | null;
|
|
26874
|
+
};
|
|
26824
26875
|
})[] | undefined;
|
|
26825
26876
|
/** The last time an internal sync job completed for this access system user. */
|
|
26826
26877
|
last_successful_sync_at: string | null;
|
|
@@ -27084,6 +27135,23 @@ export type Routes = {
|
|
|
27084
27135
|
acs_access_group_id: string;
|
|
27085
27136
|
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
27086
27137
|
variant: 'adding' | 'removing';
|
|
27138
|
+
} | {
|
|
27139
|
+
/** Date and time at which the mutation was created. */
|
|
27140
|
+
created_at: string;
|
|
27141
|
+
/** Detailed description of the mutation. */
|
|
27142
|
+
message: string;
|
|
27143
|
+
/** Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system. */
|
|
27144
|
+
mutation_code: 'updating_credential_assignment';
|
|
27145
|
+
/** Previous credential assignment. */
|
|
27146
|
+
from: {
|
|
27147
|
+
/** Previous credential ID. */
|
|
27148
|
+
acs_credential_id: string | null;
|
|
27149
|
+
};
|
|
27150
|
+
/** New credential assignment. */
|
|
27151
|
+
to: {
|
|
27152
|
+
/** New credential ID. */
|
|
27153
|
+
acs_credential_id: string | null;
|
|
27154
|
+
};
|
|
27087
27155
|
})[] | undefined;
|
|
27088
27156
|
/** The last time an internal sync job completed for this access system user. */
|
|
27089
27157
|
last_successful_sync_at: string | null;
|
|
@@ -27560,6 +27628,23 @@ export type Routes = {
|
|
|
27560
27628
|
acs_access_group_id: string;
|
|
27561
27629
|
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
27562
27630
|
variant: 'adding' | 'removing';
|
|
27631
|
+
} | {
|
|
27632
|
+
/** Date and time at which the mutation was created. */
|
|
27633
|
+
created_at: string;
|
|
27634
|
+
/** Detailed description of the mutation. */
|
|
27635
|
+
message: string;
|
|
27636
|
+
/** Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system. */
|
|
27637
|
+
mutation_code: 'updating_credential_assignment';
|
|
27638
|
+
/** Previous credential assignment. */
|
|
27639
|
+
from: {
|
|
27640
|
+
/** Previous credential ID. */
|
|
27641
|
+
acs_credential_id: string | null;
|
|
27642
|
+
};
|
|
27643
|
+
/** New credential assignment. */
|
|
27644
|
+
to: {
|
|
27645
|
+
/** New credential ID. */
|
|
27646
|
+
acs_credential_id: string | null;
|
|
27647
|
+
};
|
|
27563
27648
|
})[] | undefined;
|
|
27564
27649
|
/** The last time an internal sync job completed for this access system user. */
|
|
27565
27650
|
last_successful_sync_at: string | null;
|
|
@@ -27819,6 +27904,23 @@ export type Routes = {
|
|
|
27819
27904
|
acs_access_group_id: string;
|
|
27820
27905
|
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
27821
27906
|
variant: 'adding' | 'removing';
|
|
27907
|
+
} | {
|
|
27908
|
+
/** Date and time at which the mutation was created. */
|
|
27909
|
+
created_at: string;
|
|
27910
|
+
/** Detailed description of the mutation. */
|
|
27911
|
+
message: string;
|
|
27912
|
+
/** Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system. */
|
|
27913
|
+
mutation_code: 'updating_credential_assignment';
|
|
27914
|
+
/** Previous credential assignment. */
|
|
27915
|
+
from: {
|
|
27916
|
+
/** Previous credential ID. */
|
|
27917
|
+
acs_credential_id: string | null;
|
|
27918
|
+
};
|
|
27919
|
+
/** New credential assignment. */
|
|
27920
|
+
to: {
|
|
27921
|
+
/** New credential ID. */
|
|
27922
|
+
acs_credential_id: string | null;
|
|
27923
|
+
};
|
|
27822
27924
|
})[] | undefined;
|
|
27823
27925
|
/** The last time an internal sync job completed for this access system user. */
|
|
27824
27926
|
last_successful_sync_at: string | null;
|
|
@@ -91664,6 +91766,23 @@ export type Routes = {
|
|
|
91664
91766
|
acs_access_group_id: string;
|
|
91665
91767
|
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
91666
91768
|
variant: 'adding' | 'removing';
|
|
91769
|
+
} | {
|
|
91770
|
+
/** Date and time at which the mutation was created. */
|
|
91771
|
+
created_at: string;
|
|
91772
|
+
/** Detailed description of the mutation. */
|
|
91773
|
+
message: string;
|
|
91774
|
+
/** Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system. */
|
|
91775
|
+
mutation_code: 'updating_credential_assignment';
|
|
91776
|
+
/** Previous credential assignment. */
|
|
91777
|
+
from: {
|
|
91778
|
+
/** Previous credential ID. */
|
|
91779
|
+
acs_credential_id: string | null;
|
|
91780
|
+
};
|
|
91781
|
+
/** New credential assignment. */
|
|
91782
|
+
to: {
|
|
91783
|
+
/** New credential ID. */
|
|
91784
|
+
acs_credential_id: string | null;
|
|
91785
|
+
};
|
|
91667
91786
|
})[] | undefined;
|
|
91668
91787
|
/** The last time an internal sync job completed for this access system user. */
|
|
91669
91788
|
last_successful_sync_at: string | null;
|
|
@@ -94097,6 +94216,23 @@ export type Routes = {
|
|
|
94097
94216
|
acs_access_group_id: string;
|
|
94098
94217
|
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
94099
94218
|
variant: 'adding' | 'removing';
|
|
94219
|
+
} | {
|
|
94220
|
+
/** Date and time at which the mutation was created. */
|
|
94221
|
+
created_at: string;
|
|
94222
|
+
/** Detailed description of the mutation. */
|
|
94223
|
+
message: string;
|
|
94224
|
+
/** Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system. */
|
|
94225
|
+
mutation_code: 'updating_credential_assignment';
|
|
94226
|
+
/** Previous credential assignment. */
|
|
94227
|
+
from: {
|
|
94228
|
+
/** Previous credential ID. */
|
|
94229
|
+
acs_credential_id: string | null;
|
|
94230
|
+
};
|
|
94231
|
+
/** New credential assignment. */
|
|
94232
|
+
to: {
|
|
94233
|
+
/** New credential ID. */
|
|
94234
|
+
acs_credential_id: string | null;
|
|
94235
|
+
};
|
|
94100
94236
|
})[] | undefined;
|
|
94101
94237
|
/** The last time an internal sync job completed for this access system user. */
|
|
94102
94238
|
last_successful_sync_at: string | null;
|
|
@@ -95867,6 +96003,23 @@ export type Routes = {
|
|
|
95867
96003
|
acs_access_group_id: string;
|
|
95868
96004
|
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
95869
96005
|
variant: 'adding' | 'removing';
|
|
96006
|
+
} | {
|
|
96007
|
+
/** Date and time at which the mutation was created. */
|
|
96008
|
+
created_at: string;
|
|
96009
|
+
/** Detailed description of the mutation. */
|
|
96010
|
+
message: string;
|
|
96011
|
+
/** Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system. */
|
|
96012
|
+
mutation_code: 'updating_credential_assignment';
|
|
96013
|
+
/** Previous credential assignment. */
|
|
96014
|
+
from: {
|
|
96015
|
+
/** Previous credential ID. */
|
|
96016
|
+
acs_credential_id: string | null;
|
|
96017
|
+
};
|
|
96018
|
+
/** New credential assignment. */
|
|
96019
|
+
to: {
|
|
96020
|
+
/** New credential ID. */
|
|
96021
|
+
acs_credential_id: string | null;
|
|
96022
|
+
};
|
|
95870
96023
|
})[] | undefined;
|
|
95871
96024
|
/** The last time an internal sync job completed for this access system user. */
|
|
95872
96025
|
last_successful_sync_at: string | null;
|
package/package.json
CHANGED
|
@@ -32,9 +32,31 @@ const deleting = common_pending_mutation
|
|
|
32
32
|
'Seam is in the process of pushing a credential deletion to the integrated access system.',
|
|
33
33
|
)
|
|
34
34
|
|
|
35
|
+
const updating_user_assignment = common_pending_mutation
|
|
36
|
+
.extend({
|
|
37
|
+
mutation_code: z
|
|
38
|
+
.literal('updating_user_assignment')
|
|
39
|
+
.describe(
|
|
40
|
+
'Mutation code to indicate that Seam is in the process of assigning or unassigning the credential to a user on the integrated access system.',
|
|
41
|
+
),
|
|
42
|
+
from: z
|
|
43
|
+
.object({
|
|
44
|
+
acs_user_id: z.string().uuid().nullable().describe('Previous user ID.'),
|
|
45
|
+
})
|
|
46
|
+
.describe('Previous user assignment.'),
|
|
47
|
+
to: z
|
|
48
|
+
.object({
|
|
49
|
+
acs_user_id: z.string().uuid().nullable().describe('New user ID.'),
|
|
50
|
+
})
|
|
51
|
+
.describe('New user assignment.'),
|
|
52
|
+
})
|
|
53
|
+
.describe(
|
|
54
|
+
'Seam is in the process of assigning or unassigning the credential to a user on the integrated access system.',
|
|
55
|
+
)
|
|
56
|
+
|
|
35
57
|
export const acs_credential_pending_mutations = z.discriminatedUnion(
|
|
36
58
|
'mutation_code',
|
|
37
|
-
[creating, deleting],
|
|
59
|
+
[creating, deleting, updating_user_assignment],
|
|
38
60
|
)
|
|
39
61
|
|
|
40
62
|
export type AcsCredentialPendingMutation = z.infer<
|
|
@@ -44,6 +66,7 @@ export type AcsCredentialPendingMutation = z.infer<
|
|
|
44
66
|
const _acs_credential_pending_mutations_map = z.object({
|
|
45
67
|
creating: creating.optional().nullable(),
|
|
46
68
|
deleting: deleting.optional().nullable(),
|
|
69
|
+
updating_user_assignment: updating_user_assignment.optional().nullable(),
|
|
47
70
|
})
|
|
48
71
|
|
|
49
72
|
export type AcsCredentialPendingMutationsMap = z.infer<
|
|
@@ -179,6 +179,36 @@ const deferring_group_membership_update_mutation = common_pending_mutation
|
|
|
179
179
|
'A scheduled access group membership change is pending for this user.',
|
|
180
180
|
)
|
|
181
181
|
|
|
182
|
+
const updating_credential_assignment_mutation = common_pending_mutation
|
|
183
|
+
.extend({
|
|
184
|
+
mutation_code: z
|
|
185
|
+
.literal('updating_credential_assignment')
|
|
186
|
+
.describe(
|
|
187
|
+
'Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system.',
|
|
188
|
+
),
|
|
189
|
+
from: z
|
|
190
|
+
.object({
|
|
191
|
+
acs_credential_id: z
|
|
192
|
+
.string()
|
|
193
|
+
.uuid()
|
|
194
|
+
.nullable()
|
|
195
|
+
.describe('Previous credential ID.'),
|
|
196
|
+
})
|
|
197
|
+
.describe('Previous credential assignment.'),
|
|
198
|
+
to: z
|
|
199
|
+
.object({
|
|
200
|
+
acs_credential_id: z
|
|
201
|
+
.string()
|
|
202
|
+
.uuid()
|
|
203
|
+
.nullable()
|
|
204
|
+
.describe('New credential ID.'),
|
|
205
|
+
})
|
|
206
|
+
.describe('New credential assignment.'),
|
|
207
|
+
})
|
|
208
|
+
.describe(
|
|
209
|
+
'Seam is in the process of assigning or unassigning a credential to the user on the integrated access system.',
|
|
210
|
+
)
|
|
211
|
+
|
|
182
212
|
export const acs_user_pending_mutations = z.discriminatedUnion(
|
|
183
213
|
'mutation_code',
|
|
184
214
|
[
|
|
@@ -190,6 +220,7 @@ export const acs_user_pending_mutations = z.discriminatedUnion(
|
|
|
190
220
|
updating_suspension_state_mutation,
|
|
191
221
|
updating_group_membership_mutation,
|
|
192
222
|
deferring_group_membership_update_mutation,
|
|
223
|
+
updating_credential_assignment_mutation,
|
|
193
224
|
],
|
|
194
225
|
)
|
|
195
226
|
|
|
@@ -210,6 +241,10 @@ const _acs_user_pending_mutations_map = z.object({
|
|
|
210
241
|
.record(z.string().uuid(), deferring_group_membership_update_mutation)
|
|
211
242
|
.optional()
|
|
212
243
|
.nullable(),
|
|
244
|
+
updating_credential_assignment: z
|
|
245
|
+
.record(z.string().uuid(), updating_credential_assignment_mutation)
|
|
246
|
+
.optional()
|
|
247
|
+
.nullable(),
|
|
213
248
|
updating_suspension_state: updating_suspension_state_mutation
|
|
214
249
|
.optional()
|
|
215
250
|
.nullable(),
|
|
@@ -5716,6 +5716,62 @@ const openapi: OpenAPISpec = {
|
|
|
5716
5716
|
],
|
|
5717
5717
|
type: 'object',
|
|
5718
5718
|
},
|
|
5719
|
+
{
|
|
5720
|
+
description:
|
|
5721
|
+
'Seam is in the process of assigning or unassigning a credential to the user on the integrated access system.',
|
|
5722
|
+
properties: {
|
|
5723
|
+
created_at: {
|
|
5724
|
+
description:
|
|
5725
|
+
'Date and time at which the mutation was created.',
|
|
5726
|
+
format: 'date-time',
|
|
5727
|
+
type: 'string',
|
|
5728
|
+
},
|
|
5729
|
+
from: {
|
|
5730
|
+
description: 'Previous credential assignment.',
|
|
5731
|
+
properties: {
|
|
5732
|
+
acs_credential_id: {
|
|
5733
|
+
description: 'Previous credential ID.',
|
|
5734
|
+
format: 'uuid',
|
|
5735
|
+
nullable: true,
|
|
5736
|
+
type: 'string',
|
|
5737
|
+
},
|
|
5738
|
+
},
|
|
5739
|
+
required: ['acs_credential_id'],
|
|
5740
|
+
type: 'object',
|
|
5741
|
+
},
|
|
5742
|
+
message: {
|
|
5743
|
+
description: 'Detailed description of the mutation.',
|
|
5744
|
+
type: 'string',
|
|
5745
|
+
},
|
|
5746
|
+
mutation_code: {
|
|
5747
|
+
description:
|
|
5748
|
+
'Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system.',
|
|
5749
|
+
enum: ['updating_credential_assignment'],
|
|
5750
|
+
type: 'string',
|
|
5751
|
+
},
|
|
5752
|
+
to: {
|
|
5753
|
+
description: 'New credential assignment.',
|
|
5754
|
+
properties: {
|
|
5755
|
+
acs_credential_id: {
|
|
5756
|
+
description: 'New credential ID.',
|
|
5757
|
+
format: 'uuid',
|
|
5758
|
+
nullable: true,
|
|
5759
|
+
type: 'string',
|
|
5760
|
+
},
|
|
5761
|
+
},
|
|
5762
|
+
required: ['acs_credential_id'],
|
|
5763
|
+
type: 'object',
|
|
5764
|
+
},
|
|
5765
|
+
},
|
|
5766
|
+
required: [
|
|
5767
|
+
'created_at',
|
|
5768
|
+
'message',
|
|
5769
|
+
'mutation_code',
|
|
5770
|
+
'from',
|
|
5771
|
+
'to',
|
|
5772
|
+
],
|
|
5773
|
+
type: 'object',
|
|
5774
|
+
},
|
|
5719
5775
|
],
|
|
5720
5776
|
},
|
|
5721
5777
|
type: 'array',
|
|
@@ -29801,6 +29857,62 @@ const openapi: OpenAPISpec = {
|
|
|
29801
29857
|
],
|
|
29802
29858
|
type: 'object',
|
|
29803
29859
|
},
|
|
29860
|
+
{
|
|
29861
|
+
description:
|
|
29862
|
+
'Seam is in the process of assigning or unassigning a credential to the user on the integrated access system.',
|
|
29863
|
+
properties: {
|
|
29864
|
+
created_at: {
|
|
29865
|
+
description:
|
|
29866
|
+
'Date and time at which the mutation was created.',
|
|
29867
|
+
format: 'date-time',
|
|
29868
|
+
type: 'string',
|
|
29869
|
+
},
|
|
29870
|
+
from: {
|
|
29871
|
+
description: 'Previous credential assignment.',
|
|
29872
|
+
properties: {
|
|
29873
|
+
acs_credential_id: {
|
|
29874
|
+
description: 'Previous credential ID.',
|
|
29875
|
+
format: 'uuid',
|
|
29876
|
+
nullable: true,
|
|
29877
|
+
type: 'string',
|
|
29878
|
+
},
|
|
29879
|
+
},
|
|
29880
|
+
required: ['acs_credential_id'],
|
|
29881
|
+
type: 'object',
|
|
29882
|
+
},
|
|
29883
|
+
message: {
|
|
29884
|
+
description: 'Detailed description of the mutation.',
|
|
29885
|
+
type: 'string',
|
|
29886
|
+
},
|
|
29887
|
+
mutation_code: {
|
|
29888
|
+
description:
|
|
29889
|
+
'Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system.',
|
|
29890
|
+
enum: ['updating_credential_assignment'],
|
|
29891
|
+
type: 'string',
|
|
29892
|
+
},
|
|
29893
|
+
to: {
|
|
29894
|
+
description: 'New credential assignment.',
|
|
29895
|
+
properties: {
|
|
29896
|
+
acs_credential_id: {
|
|
29897
|
+
description: 'New credential ID.',
|
|
29898
|
+
format: 'uuid',
|
|
29899
|
+
nullable: true,
|
|
29900
|
+
type: 'string',
|
|
29901
|
+
},
|
|
29902
|
+
},
|
|
29903
|
+
required: ['acs_credential_id'],
|
|
29904
|
+
type: 'object',
|
|
29905
|
+
},
|
|
29906
|
+
},
|
|
29907
|
+
required: [
|
|
29908
|
+
'created_at',
|
|
29909
|
+
'message',
|
|
29910
|
+
'mutation_code',
|
|
29911
|
+
'from',
|
|
29912
|
+
'to',
|
|
29913
|
+
],
|
|
29914
|
+
type: 'object',
|
|
29915
|
+
},
|
|
29804
29916
|
],
|
|
29805
29917
|
},
|
|
29806
29918
|
type: 'array',
|
|
@@ -21974,6 +21974,24 @@ export type Routes = {
|
|
|
21974
21974
|
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
21975
21975
|
variant: 'adding' | 'removing'
|
|
21976
21976
|
}
|
|
21977
|
+
| {
|
|
21978
|
+
/** Date and time at which the mutation was created. */
|
|
21979
|
+
created_at: string
|
|
21980
|
+
/** Detailed description of the mutation. */
|
|
21981
|
+
message: string
|
|
21982
|
+
/** Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system. */
|
|
21983
|
+
mutation_code: 'updating_credential_assignment'
|
|
21984
|
+
/** Previous credential assignment. */
|
|
21985
|
+
from: {
|
|
21986
|
+
/** Previous credential ID. */
|
|
21987
|
+
acs_credential_id: string | null
|
|
21988
|
+
}
|
|
21989
|
+
/** New credential assignment. */
|
|
21990
|
+
to: {
|
|
21991
|
+
/** New credential ID. */
|
|
21992
|
+
acs_credential_id: string | null
|
|
21993
|
+
}
|
|
21994
|
+
}
|
|
21977
21995
|
)[]
|
|
21978
21996
|
| undefined
|
|
21979
21997
|
/** The last time an internal sync job completed for this access system user. */
|
|
@@ -30821,6 +30839,24 @@ export type Routes = {
|
|
|
30821
30839
|
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
30822
30840
|
variant: 'adding' | 'removing'
|
|
30823
30841
|
}
|
|
30842
|
+
| {
|
|
30843
|
+
/** Date and time at which the mutation was created. */
|
|
30844
|
+
created_at: string
|
|
30845
|
+
/** Detailed description of the mutation. */
|
|
30846
|
+
message: string
|
|
30847
|
+
/** Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system. */
|
|
30848
|
+
mutation_code: 'updating_credential_assignment'
|
|
30849
|
+
/** Previous credential assignment. */
|
|
30850
|
+
from: {
|
|
30851
|
+
/** Previous credential ID. */
|
|
30852
|
+
acs_credential_id: string | null
|
|
30853
|
+
}
|
|
30854
|
+
/** New credential assignment. */
|
|
30855
|
+
to: {
|
|
30856
|
+
/** New credential ID. */
|
|
30857
|
+
acs_credential_id: string | null
|
|
30858
|
+
}
|
|
30859
|
+
}
|
|
30824
30860
|
)[]
|
|
30825
30861
|
| undefined
|
|
30826
30862
|
/** The last time an internal sync job completed for this access system user. */
|
|
@@ -31134,6 +31170,24 @@ export type Routes = {
|
|
|
31134
31170
|
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
31135
31171
|
variant: 'adding' | 'removing'
|
|
31136
31172
|
}
|
|
31173
|
+
| {
|
|
31174
|
+
/** Date and time at which the mutation was created. */
|
|
31175
|
+
created_at: string
|
|
31176
|
+
/** Detailed description of the mutation. */
|
|
31177
|
+
message: string
|
|
31178
|
+
/** Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system. */
|
|
31179
|
+
mutation_code: 'updating_credential_assignment'
|
|
31180
|
+
/** Previous credential assignment. */
|
|
31181
|
+
from: {
|
|
31182
|
+
/** Previous credential ID. */
|
|
31183
|
+
acs_credential_id: string | null
|
|
31184
|
+
}
|
|
31185
|
+
/** New credential assignment. */
|
|
31186
|
+
to: {
|
|
31187
|
+
/** New credential ID. */
|
|
31188
|
+
acs_credential_id: string | null
|
|
31189
|
+
}
|
|
31190
|
+
}
|
|
31137
31191
|
)[]
|
|
31138
31192
|
| undefined
|
|
31139
31193
|
/** The last time an internal sync job completed for this access system user. */
|
|
@@ -31435,6 +31489,24 @@ export type Routes = {
|
|
|
31435
31489
|
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
31436
31490
|
variant: 'adding' | 'removing'
|
|
31437
31491
|
}
|
|
31492
|
+
| {
|
|
31493
|
+
/** Date and time at which the mutation was created. */
|
|
31494
|
+
created_at: string
|
|
31495
|
+
/** Detailed description of the mutation. */
|
|
31496
|
+
message: string
|
|
31497
|
+
/** Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system. */
|
|
31498
|
+
mutation_code: 'updating_credential_assignment'
|
|
31499
|
+
/** Previous credential assignment. */
|
|
31500
|
+
from: {
|
|
31501
|
+
/** Previous credential ID. */
|
|
31502
|
+
acs_credential_id: string | null
|
|
31503
|
+
}
|
|
31504
|
+
/** New credential assignment. */
|
|
31505
|
+
to: {
|
|
31506
|
+
/** New credential ID. */
|
|
31507
|
+
acs_credential_id: string | null
|
|
31508
|
+
}
|
|
31509
|
+
}
|
|
31438
31510
|
)[]
|
|
31439
31511
|
| undefined
|
|
31440
31512
|
/** The last time an internal sync job completed for this access system user. */
|
|
@@ -31980,6 +32052,24 @@ export type Routes = {
|
|
|
31980
32052
|
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
31981
32053
|
variant: 'adding' | 'removing'
|
|
31982
32054
|
}
|
|
32055
|
+
| {
|
|
32056
|
+
/** Date and time at which the mutation was created. */
|
|
32057
|
+
created_at: string
|
|
32058
|
+
/** Detailed description of the mutation. */
|
|
32059
|
+
message: string
|
|
32060
|
+
/** Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system. */
|
|
32061
|
+
mutation_code: 'updating_credential_assignment'
|
|
32062
|
+
/** Previous credential assignment. */
|
|
32063
|
+
from: {
|
|
32064
|
+
/** Previous credential ID. */
|
|
32065
|
+
acs_credential_id: string | null
|
|
32066
|
+
}
|
|
32067
|
+
/** New credential assignment. */
|
|
32068
|
+
to: {
|
|
32069
|
+
/** New credential ID. */
|
|
32070
|
+
acs_credential_id: string | null
|
|
32071
|
+
}
|
|
32072
|
+
}
|
|
31983
32073
|
)[]
|
|
31984
32074
|
| undefined
|
|
31985
32075
|
/** The last time an internal sync job completed for this access system user. */
|
|
@@ -32277,6 +32367,24 @@ export type Routes = {
|
|
|
32277
32367
|
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
32278
32368
|
variant: 'adding' | 'removing'
|
|
32279
32369
|
}
|
|
32370
|
+
| {
|
|
32371
|
+
/** Date and time at which the mutation was created. */
|
|
32372
|
+
created_at: string
|
|
32373
|
+
/** Detailed description of the mutation. */
|
|
32374
|
+
message: string
|
|
32375
|
+
/** Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system. */
|
|
32376
|
+
mutation_code: 'updating_credential_assignment'
|
|
32377
|
+
/** Previous credential assignment. */
|
|
32378
|
+
from: {
|
|
32379
|
+
/** Previous credential ID. */
|
|
32380
|
+
acs_credential_id: string | null
|
|
32381
|
+
}
|
|
32382
|
+
/** New credential assignment. */
|
|
32383
|
+
to: {
|
|
32384
|
+
/** New credential ID. */
|
|
32385
|
+
acs_credential_id: string | null
|
|
32386
|
+
}
|
|
32387
|
+
}
|
|
32280
32388
|
)[]
|
|
32281
32389
|
| undefined
|
|
32282
32390
|
/** The last time an internal sync job completed for this access system user. */
|
|
@@ -109380,6 +109488,24 @@ export type Routes = {
|
|
|
109380
109488
|
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
109381
109489
|
variant: 'adding' | 'removing'
|
|
109382
109490
|
}
|
|
109491
|
+
| {
|
|
109492
|
+
/** Date and time at which the mutation was created. */
|
|
109493
|
+
created_at: string
|
|
109494
|
+
/** Detailed description of the mutation. */
|
|
109495
|
+
message: string
|
|
109496
|
+
/** Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system. */
|
|
109497
|
+
mutation_code: 'updating_credential_assignment'
|
|
109498
|
+
/** Previous credential assignment. */
|
|
109499
|
+
from: {
|
|
109500
|
+
/** Previous credential ID. */
|
|
109501
|
+
acs_credential_id: string | null
|
|
109502
|
+
}
|
|
109503
|
+
/** New credential assignment. */
|
|
109504
|
+
to: {
|
|
109505
|
+
/** New credential ID. */
|
|
109506
|
+
acs_credential_id: string | null
|
|
109507
|
+
}
|
|
109508
|
+
}
|
|
109383
109509
|
)[]
|
|
109384
109510
|
| undefined
|
|
109385
109511
|
/** The last time an internal sync job completed for this access system user. */
|
|
@@ -112327,6 +112453,24 @@ export type Routes = {
|
|
|
112327
112453
|
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
112328
112454
|
variant: 'adding' | 'removing'
|
|
112329
112455
|
}
|
|
112456
|
+
| {
|
|
112457
|
+
/** Date and time at which the mutation was created. */
|
|
112458
|
+
created_at: string
|
|
112459
|
+
/** Detailed description of the mutation. */
|
|
112460
|
+
message: string
|
|
112461
|
+
/** Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system. */
|
|
112462
|
+
mutation_code: 'updating_credential_assignment'
|
|
112463
|
+
/** Previous credential assignment. */
|
|
112464
|
+
from: {
|
|
112465
|
+
/** Previous credential ID. */
|
|
112466
|
+
acs_credential_id: string | null
|
|
112467
|
+
}
|
|
112468
|
+
/** New credential assignment. */
|
|
112469
|
+
to: {
|
|
112470
|
+
/** New credential ID. */
|
|
112471
|
+
acs_credential_id: string | null
|
|
112472
|
+
}
|
|
112473
|
+
}
|
|
112330
112474
|
)[]
|
|
112331
112475
|
| undefined
|
|
112332
112476
|
/** The last time an internal sync job completed for this access system user. */
|
|
@@ -114422,6 +114566,24 @@ export type Routes = {
|
|
|
114422
114566
|
/** Whether the user is scheduled to be added to or removed from the access group. */
|
|
114423
114567
|
variant: 'adding' | 'removing'
|
|
114424
114568
|
}
|
|
114569
|
+
| {
|
|
114570
|
+
/** Date and time at which the mutation was created. */
|
|
114571
|
+
created_at: string
|
|
114572
|
+
/** Detailed description of the mutation. */
|
|
114573
|
+
message: string
|
|
114574
|
+
/** Mutation code to indicate that Seam is in the process of assigning or unassigning a credential to the user on the integrated access system. */
|
|
114575
|
+
mutation_code: 'updating_credential_assignment'
|
|
114576
|
+
/** Previous credential assignment. */
|
|
114577
|
+
from: {
|
|
114578
|
+
/** Previous credential ID. */
|
|
114579
|
+
acs_credential_id: string | null
|
|
114580
|
+
}
|
|
114581
|
+
/** New credential assignment. */
|
|
114582
|
+
to: {
|
|
114583
|
+
/** New credential ID. */
|
|
114584
|
+
acs_credential_id: string | null
|
|
114585
|
+
}
|
|
114586
|
+
}
|
|
114425
114587
|
)[]
|
|
114426
114588
|
| undefined
|
|
114427
114589
|
/** The last time an internal sync job completed for this access system user. */
|