File tree Expand file tree Collapse file tree 4 files changed +20
-8
lines changed Expand file tree Collapse file tree 4 files changed +20
-8
lines changed Original file line number Diff line number Diff line change @@ -64,6 +64,7 @@ const unmarshalTriggerMnqNatsClientConfig = (data: unknown) => {
64
64
return {
65
65
mnqCredentialId : data . mnq_credential_id ,
66
66
mnqNamespaceId : data . mnq_namespace_id ,
67
+ mnqNatsAccountId : data . mnq_nats_account_id ,
67
68
mnqProjectId : data . mnq_project_id ,
68
69
mnqRegion : data . mnq_region ,
69
70
subject : data . subject ,
Original file line number Diff line number Diff line change @@ -155,15 +155,17 @@ export interface Container {
155
155
}
156
156
157
157
export interface CreateTriggerRequestMnqNatsClientConfig {
158
- mnqNamespaceId : string
158
+ /** @deprecated */
159
+ mnqNamespaceId ?: string
159
160
subject : string
160
161
mnqProjectId : string
161
162
mnqRegion : string
162
163
mnqNatsAccountId : string
163
164
}
164
165
165
166
export interface CreateTriggerRequestMnqSqsClientConfig {
166
- mnqNamespaceId : string
167
+ /** @deprecated */
168
+ mnqNamespaceId ?: string
167
169
queue : string
168
170
mnqProjectId : string
169
171
mnqRegion : string
@@ -361,15 +363,18 @@ export interface Trigger {
361
363
}
362
364
363
365
export interface TriggerMnqNatsClientConfig {
364
- mnqNamespaceId : string
366
+ /** @deprecated */
367
+ mnqNamespaceId ?: string
365
368
subject : string
366
369
mnqProjectId : string
367
370
mnqRegion : string
368
371
mnqCredentialId ?: string
372
+ mnqNatsAccountId : string
369
373
}
370
374
371
375
export interface TriggerMnqSqsClientConfig {
372
- mnqNamespaceId : string
376
+ /** @deprecated */
377
+ mnqNamespaceId ?: string
373
378
queue : string
374
379
mnqProjectId : string
375
380
mnqRegion : string
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ const unmarshalTriggerMnqNatsClientConfig = (data: unknown) => {
68
68
return {
69
69
mnqCredentialId : data . mnq_credential_id ,
70
70
mnqNamespaceId : data . mnq_namespace_id ,
71
+ mnqNatsAccountId : data . mnq_nats_account_id ,
71
72
mnqProjectId : data . mnq_project_id ,
72
73
mnqRegion : data . mnq_region ,
73
74
subject : data . subject ,
Original file line number Diff line number Diff line change @@ -133,15 +133,17 @@ export type TriggerStatus =
133
133
| 'pending'
134
134
135
135
export interface CreateTriggerRequestMnqNatsClientConfig {
136
- mnqNamespaceId : string
136
+ /** @deprecated */
137
+ mnqNamespaceId ?: string
137
138
subject : string
138
139
mnqProjectId : string
139
140
mnqRegion : string
140
141
mnqNatsAccountId : string
141
142
}
142
143
143
144
export interface CreateTriggerRequestMnqSqsClientConfig {
144
- mnqNamespaceId : string
145
+ /** @deprecated */
146
+ mnqNamespaceId ?: string
145
147
queue : string
146
148
mnqProjectId : string
147
149
mnqRegion : string
@@ -420,15 +422,18 @@ export interface Trigger {
420
422
}
421
423
422
424
export interface TriggerMnqNatsClientConfig {
423
- mnqNamespaceId : string
425
+ /** @deprecated */
426
+ mnqNamespaceId ?: string
424
427
subject : string
425
428
mnqProjectId : string
426
429
mnqRegion : string
427
430
mnqCredentialId ?: string
431
+ mnqNatsAccountId : string
428
432
}
429
433
430
434
export interface TriggerMnqSqsClientConfig {
431
- mnqNamespaceId : string
435
+ /** @deprecated */
436
+ mnqNamespaceId ?: string
432
437
queue : string
433
438
mnqProjectId : string
434
439
mnqRegion : string
You can’t perform that action at this time.
0 commit comments