@remnawave/backend-contract 2.8.26 → 2.8.28
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/build/backend/api/controllers/users.d.ts +1 -0
- package/build/backend/api/controllers/users.d.ts.map +1 -1
- package/build/backend/api/controllers/users.js +1 -0
- package/build/backend/api/routes.d.ts +1 -0
- package/build/backend/api/routes.d.ts.map +1 -1
- package/build/backend/api/routes.js +1 -0
- package/build/backend/commands/infra-billing/create-billing-node.command.d.ts +31 -21
- package/build/backend/commands/infra-billing/create-billing-node.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/create-billing-node.command.js +2 -2
- package/build/backend/commands/infra-billing/create-infra-provider.command.d.ts +34 -14
- package/build/backend/commands/infra-billing/create-infra-provider.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts +22 -15
- package/build/backend/commands/infra-billing/delete-billing-node-by-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/get-billing-nodes.command.d.ts +22 -15
- package/build/backend/commands/infra-billing/get-billing-nodes.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.d.ts +34 -14
- package/build/backend/commands/infra-billing/get-infra-provider-by-uuid.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/get-infra-providers.command.d.ts +42 -18
- package/build/backend/commands/infra-billing/get-infra-providers.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/update-billing-node.command.d.ts +22 -15
- package/build/backend/commands/infra-billing/update-billing-node.command.d.ts.map +1 -1
- package/build/backend/commands/infra-billing/update-infra-provider.command.d.ts +34 -14
- package/build/backend/commands/infra-billing/update-infra-provider.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-all-users.command.d.ts.map +1 -1
- package/build/backend/commands/users/get-all-users.command.js +1 -1
- package/build/backend/commands/users/get-users-stream.command.d.ts +321 -0
- package/build/backend/commands/users/get-users-stream.command.d.ts.map +1 -0
- package/build/backend/commands/users/get-users-stream.command.js +37 -0
- package/build/backend/commands/users/index.d.ts +1 -0
- package/build/backend/commands/users/index.d.ts.map +1 -1
- package/build/backend/commands/users/index.js +1 -0
- package/build/backend/constants/errors/errors.d.ts +5 -0
- package/build/backend/constants/errors/errors.d.ts.map +1 -1
- package/build/backend/constants/errors/errors.js +5 -0
- package/build/backend/models/infra-billing-node.schema.d.ts +10 -7
- package/build/backend/models/infra-billing-node.schema.d.ts.map +1 -1
- package/build/backend/models/infra-billing-node.schema.js +3 -2
- package/build/backend/models/infra-provider.schema.d.ts +26 -10
- package/build/backend/models/infra-provider.schema.d.ts.map +1 -1
- package/build/backend/models/infra-provider.schema.js +6 -2
- package/build/frontend/api/controllers/users.js +1 -0
- package/build/frontend/api/routes.js +1 -0
- package/build/frontend/commands/infra-billing/create-billing-node.command.js +2 -2
- package/build/frontend/commands/users/get-all-users.command.js +1 -1
- package/build/frontend/commands/users/get-users-stream.command.js +37 -0
- package/build/frontend/commands/users/index.js +1 -0
- package/build/frontend/constants/errors/errors.js +5 -0
- package/build/frontend/models/infra-billing-node.schema.js +3 -2
- package/build/frontend/models/infra-provider.schema.js +6 -2
- package/package.json +1 -1
|
@@ -30,17 +30,29 @@ export declare namespace GetInfraProviderByUuidCommand {
|
|
|
30
30
|
totalBills: number;
|
|
31
31
|
}>;
|
|
32
32
|
billingNodes: z.ZodArray<z.ZodObject<{
|
|
33
|
-
nodeUuid: z.ZodString;
|
|
34
33
|
name: z.ZodString;
|
|
35
|
-
|
|
34
|
+
details: z.ZodNullable<z.ZodObject<{
|
|
35
|
+
nodeUuid: z.ZodString;
|
|
36
|
+
countryCode: z.ZodString;
|
|
37
|
+
}, "strip", z.ZodTypeAny, {
|
|
38
|
+
nodeUuid: string;
|
|
39
|
+
countryCode: string;
|
|
40
|
+
}, {
|
|
41
|
+
nodeUuid: string;
|
|
42
|
+
countryCode: string;
|
|
43
|
+
}>>;
|
|
36
44
|
}, "strip", z.ZodTypeAny, {
|
|
37
|
-
nodeUuid: string;
|
|
38
|
-
countryCode: string;
|
|
39
45
|
name: string;
|
|
46
|
+
details: {
|
|
47
|
+
nodeUuid: string;
|
|
48
|
+
countryCode: string;
|
|
49
|
+
} | null;
|
|
40
50
|
}, {
|
|
41
|
-
nodeUuid: string;
|
|
42
|
-
countryCode: string;
|
|
43
51
|
name: string;
|
|
52
|
+
details: {
|
|
53
|
+
nodeUuid: string;
|
|
54
|
+
countryCode: string;
|
|
55
|
+
} | null;
|
|
44
56
|
}>, "many">;
|
|
45
57
|
}, "strip", z.ZodTypeAny, {
|
|
46
58
|
uuid: string;
|
|
@@ -54,9 +66,11 @@ export declare namespace GetInfraProviderByUuidCommand {
|
|
|
54
66
|
totalBills: number;
|
|
55
67
|
};
|
|
56
68
|
billingNodes: {
|
|
57
|
-
nodeUuid: string;
|
|
58
|
-
countryCode: string;
|
|
59
69
|
name: string;
|
|
70
|
+
details: {
|
|
71
|
+
nodeUuid: string;
|
|
72
|
+
countryCode: string;
|
|
73
|
+
} | null;
|
|
60
74
|
}[];
|
|
61
75
|
}, {
|
|
62
76
|
uuid: string;
|
|
@@ -70,9 +84,11 @@ export declare namespace GetInfraProviderByUuidCommand {
|
|
|
70
84
|
totalBills: number;
|
|
71
85
|
};
|
|
72
86
|
billingNodes: {
|
|
73
|
-
nodeUuid: string;
|
|
74
|
-
countryCode: string;
|
|
75
87
|
name: string;
|
|
88
|
+
details: {
|
|
89
|
+
nodeUuid: string;
|
|
90
|
+
countryCode: string;
|
|
91
|
+
} | null;
|
|
76
92
|
}[];
|
|
77
93
|
}>;
|
|
78
94
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -88,9 +104,11 @@ export declare namespace GetInfraProviderByUuidCommand {
|
|
|
88
104
|
totalBills: number;
|
|
89
105
|
};
|
|
90
106
|
billingNodes: {
|
|
91
|
-
nodeUuid: string;
|
|
92
|
-
countryCode: string;
|
|
93
107
|
name: string;
|
|
108
|
+
details: {
|
|
109
|
+
nodeUuid: string;
|
|
110
|
+
countryCode: string;
|
|
111
|
+
} | null;
|
|
94
112
|
}[];
|
|
95
113
|
};
|
|
96
114
|
}, {
|
|
@@ -106,9 +124,11 @@ export declare namespace GetInfraProviderByUuidCommand {
|
|
|
106
124
|
totalBills: number;
|
|
107
125
|
};
|
|
108
126
|
billingNodes: {
|
|
109
|
-
nodeUuid: string;
|
|
110
|
-
countryCode: string;
|
|
111
127
|
name: string;
|
|
128
|
+
details: {
|
|
129
|
+
nodeUuid: string;
|
|
130
|
+
countryCode: string;
|
|
131
|
+
} | null;
|
|
112
132
|
}[];
|
|
113
133
|
};
|
|
114
134
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-infra-provider-by-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/get-infra-provider-by-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,6BAA6B,CAAC;IACpC,MAAM,GAAG,0BAA8C,CAAC;IACxD,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,2CAK3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"get-infra-provider-by-uuid.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/get-infra-provider-by-uuid.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,6BAA6B,CAAC;IACpC,MAAM,GAAG,0BAA8C,CAAC;IACxD,MAAM,OAAO,QAAe,CAAC;IAE7B,MAAM,eAAe,2CAK3B,CAAC;IAEK,MAAM,aAAa;;;;;;MAExB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
|
@@ -24,17 +24,29 @@ export declare namespace GetInfraProvidersCommand {
|
|
|
24
24
|
totalBills: number;
|
|
25
25
|
}>;
|
|
26
26
|
billingNodes: z.ZodArray<z.ZodObject<{
|
|
27
|
-
nodeUuid: z.ZodString;
|
|
28
27
|
name: z.ZodString;
|
|
29
|
-
|
|
28
|
+
details: z.ZodNullable<z.ZodObject<{
|
|
29
|
+
nodeUuid: z.ZodString;
|
|
30
|
+
countryCode: z.ZodString;
|
|
31
|
+
}, "strip", z.ZodTypeAny, {
|
|
32
|
+
nodeUuid: string;
|
|
33
|
+
countryCode: string;
|
|
34
|
+
}, {
|
|
35
|
+
nodeUuid: string;
|
|
36
|
+
countryCode: string;
|
|
37
|
+
}>>;
|
|
30
38
|
}, "strip", z.ZodTypeAny, {
|
|
31
|
-
nodeUuid: string;
|
|
32
|
-
countryCode: string;
|
|
33
39
|
name: string;
|
|
40
|
+
details: {
|
|
41
|
+
nodeUuid: string;
|
|
42
|
+
countryCode: string;
|
|
43
|
+
} | null;
|
|
34
44
|
}, {
|
|
35
|
-
nodeUuid: string;
|
|
36
|
-
countryCode: string;
|
|
37
45
|
name: string;
|
|
46
|
+
details: {
|
|
47
|
+
nodeUuid: string;
|
|
48
|
+
countryCode: string;
|
|
49
|
+
} | null;
|
|
38
50
|
}>, "many">;
|
|
39
51
|
}, "strip", z.ZodTypeAny, {
|
|
40
52
|
uuid: string;
|
|
@@ -48,9 +60,11 @@ export declare namespace GetInfraProvidersCommand {
|
|
|
48
60
|
totalBills: number;
|
|
49
61
|
};
|
|
50
62
|
billingNodes: {
|
|
51
|
-
nodeUuid: string;
|
|
52
|
-
countryCode: string;
|
|
53
63
|
name: string;
|
|
64
|
+
details: {
|
|
65
|
+
nodeUuid: string;
|
|
66
|
+
countryCode: string;
|
|
67
|
+
} | null;
|
|
54
68
|
}[];
|
|
55
69
|
}, {
|
|
56
70
|
uuid: string;
|
|
@@ -64,9 +78,11 @@ export declare namespace GetInfraProvidersCommand {
|
|
|
64
78
|
totalBills: number;
|
|
65
79
|
};
|
|
66
80
|
billingNodes: {
|
|
67
|
-
nodeUuid: string;
|
|
68
|
-
countryCode: string;
|
|
69
81
|
name: string;
|
|
82
|
+
details: {
|
|
83
|
+
nodeUuid: string;
|
|
84
|
+
countryCode: string;
|
|
85
|
+
} | null;
|
|
70
86
|
}[];
|
|
71
87
|
}>, "many">;
|
|
72
88
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -82,9 +98,11 @@ export declare namespace GetInfraProvidersCommand {
|
|
|
82
98
|
totalBills: number;
|
|
83
99
|
};
|
|
84
100
|
billingNodes: {
|
|
85
|
-
nodeUuid: string;
|
|
86
|
-
countryCode: string;
|
|
87
101
|
name: string;
|
|
102
|
+
details: {
|
|
103
|
+
nodeUuid: string;
|
|
104
|
+
countryCode: string;
|
|
105
|
+
} | null;
|
|
88
106
|
}[];
|
|
89
107
|
}[];
|
|
90
108
|
total: number;
|
|
@@ -101,9 +119,11 @@ export declare namespace GetInfraProvidersCommand {
|
|
|
101
119
|
totalBills: number;
|
|
102
120
|
};
|
|
103
121
|
billingNodes: {
|
|
104
|
-
nodeUuid: string;
|
|
105
|
-
countryCode: string;
|
|
106
122
|
name: string;
|
|
123
|
+
details: {
|
|
124
|
+
nodeUuid: string;
|
|
125
|
+
countryCode: string;
|
|
126
|
+
} | null;
|
|
107
127
|
}[];
|
|
108
128
|
}[];
|
|
109
129
|
total: number;
|
|
@@ -122,9 +142,11 @@ export declare namespace GetInfraProvidersCommand {
|
|
|
122
142
|
totalBills: number;
|
|
123
143
|
};
|
|
124
144
|
billingNodes: {
|
|
125
|
-
nodeUuid: string;
|
|
126
|
-
countryCode: string;
|
|
127
145
|
name: string;
|
|
146
|
+
details: {
|
|
147
|
+
nodeUuid: string;
|
|
148
|
+
countryCode: string;
|
|
149
|
+
} | null;
|
|
128
150
|
}[];
|
|
129
151
|
}[];
|
|
130
152
|
total: number;
|
|
@@ -143,9 +165,11 @@ export declare namespace GetInfraProvidersCommand {
|
|
|
143
165
|
totalBills: number;
|
|
144
166
|
};
|
|
145
167
|
billingNodes: {
|
|
146
|
-
nodeUuid: string;
|
|
147
|
-
countryCode: string;
|
|
148
168
|
name: string;
|
|
169
|
+
details: {
|
|
170
|
+
nodeUuid: string;
|
|
171
|
+
countryCode: string;
|
|
172
|
+
} | null;
|
|
149
173
|
}[];
|
|
150
174
|
}[];
|
|
151
175
|
total: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-infra-providers.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/get-infra-providers.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,wBAAwB,CAAC;IAC/B,MAAM,GAAG,gCAAuC,CAAC;IACjD,MAAM,OAAO,gCAAM,CAAC;IAEpB,MAAM,eAAe,2CAK3B,CAAC;IAEK,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"get-infra-providers.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/get-infra-providers.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,wBAAwB,CAAC;IAC/B,MAAM,GAAG,gCAAuC,CAAC;IACjD,MAAM,OAAO,gCAAM,CAAC;IAEpB,MAAM,eAAe,2CAK3B,CAAC;IAEK,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
|
@@ -19,7 +19,8 @@ export declare namespace UpdateInfraBillingNodeCommand {
|
|
|
19
19
|
totalBillingNodes: z.ZodNumber;
|
|
20
20
|
billingNodes: z.ZodArray<z.ZodObject<{
|
|
21
21
|
uuid: z.ZodString;
|
|
22
|
-
nodeUuid: z.ZodString
|
|
22
|
+
nodeUuid: z.ZodNullable<z.ZodString>;
|
|
23
|
+
name: z.ZodNullable<z.ZodString>;
|
|
23
24
|
providerUuid: z.ZodString;
|
|
24
25
|
provider: z.ZodObject<Pick<{
|
|
25
26
|
uuid: z.ZodString;
|
|
@@ -39,7 +40,7 @@ export declare namespace UpdateInfraBillingNodeCommand {
|
|
|
39
40
|
faviconLink: string | null;
|
|
40
41
|
loginUrl: string | null;
|
|
41
42
|
}>;
|
|
42
|
-
node: z.ZodObject<Pick<{
|
|
43
|
+
node: z.ZodNullable<z.ZodObject<Pick<{
|
|
43
44
|
uuid: z.ZodString;
|
|
44
45
|
name: z.ZodString;
|
|
45
46
|
address: z.ZodString;
|
|
@@ -299,7 +300,7 @@ export declare namespace UpdateInfraBillingNodeCommand {
|
|
|
299
300
|
uuid: string;
|
|
300
301
|
countryCode: string;
|
|
301
302
|
name: string;
|
|
302
|
-
}
|
|
303
|
+
}>>;
|
|
303
304
|
nextBillingAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
304
305
|
createdAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
305
306
|
updatedAt: z.ZodEffects<z.ZodString, Date, string>;
|
|
@@ -311,14 +312,15 @@ export declare namespace UpdateInfraBillingNodeCommand {
|
|
|
311
312
|
uuid: string;
|
|
312
313
|
countryCode: string;
|
|
313
314
|
name: string;
|
|
314
|
-
};
|
|
315
|
+
} | null;
|
|
315
316
|
provider: {
|
|
316
317
|
uuid: string;
|
|
317
318
|
name: string;
|
|
318
319
|
faviconLink: string | null;
|
|
319
320
|
loginUrl: string | null;
|
|
320
321
|
};
|
|
321
|
-
nodeUuid: string;
|
|
322
|
+
nodeUuid: string | null;
|
|
323
|
+
name: string | null;
|
|
322
324
|
providerUuid: string;
|
|
323
325
|
nextBillingAt: Date;
|
|
324
326
|
}, {
|
|
@@ -329,14 +331,15 @@ export declare namespace UpdateInfraBillingNodeCommand {
|
|
|
329
331
|
uuid: string;
|
|
330
332
|
countryCode: string;
|
|
331
333
|
name: string;
|
|
332
|
-
};
|
|
334
|
+
} | null;
|
|
333
335
|
provider: {
|
|
334
336
|
uuid: string;
|
|
335
337
|
name: string;
|
|
336
338
|
faviconLink: string | null;
|
|
337
339
|
loginUrl: string | null;
|
|
338
340
|
};
|
|
339
|
-
nodeUuid: string;
|
|
341
|
+
nodeUuid: string | null;
|
|
342
|
+
name: string | null;
|
|
340
343
|
providerUuid: string;
|
|
341
344
|
nextBillingAt: string;
|
|
342
345
|
}>, "many">;
|
|
@@ -629,14 +632,15 @@ export declare namespace UpdateInfraBillingNodeCommand {
|
|
|
629
632
|
uuid: string;
|
|
630
633
|
countryCode: string;
|
|
631
634
|
name: string;
|
|
632
|
-
};
|
|
635
|
+
} | null;
|
|
633
636
|
provider: {
|
|
634
637
|
uuid: string;
|
|
635
638
|
name: string;
|
|
636
639
|
faviconLink: string | null;
|
|
637
640
|
loginUrl: string | null;
|
|
638
641
|
};
|
|
639
|
-
nodeUuid: string;
|
|
642
|
+
nodeUuid: string | null;
|
|
643
|
+
name: string | null;
|
|
640
644
|
providerUuid: string;
|
|
641
645
|
nextBillingAt: Date;
|
|
642
646
|
}[];
|
|
@@ -661,14 +665,15 @@ export declare namespace UpdateInfraBillingNodeCommand {
|
|
|
661
665
|
uuid: string;
|
|
662
666
|
countryCode: string;
|
|
663
667
|
name: string;
|
|
664
|
-
};
|
|
668
|
+
} | null;
|
|
665
669
|
provider: {
|
|
666
670
|
uuid: string;
|
|
667
671
|
name: string;
|
|
668
672
|
faviconLink: string | null;
|
|
669
673
|
loginUrl: string | null;
|
|
670
674
|
};
|
|
671
|
-
nodeUuid: string;
|
|
675
|
+
nodeUuid: string | null;
|
|
676
|
+
name: string | null;
|
|
672
677
|
providerUuid: string;
|
|
673
678
|
nextBillingAt: string;
|
|
674
679
|
}[];
|
|
@@ -695,14 +700,15 @@ export declare namespace UpdateInfraBillingNodeCommand {
|
|
|
695
700
|
uuid: string;
|
|
696
701
|
countryCode: string;
|
|
697
702
|
name: string;
|
|
698
|
-
};
|
|
703
|
+
} | null;
|
|
699
704
|
provider: {
|
|
700
705
|
uuid: string;
|
|
701
706
|
name: string;
|
|
702
707
|
faviconLink: string | null;
|
|
703
708
|
loginUrl: string | null;
|
|
704
709
|
};
|
|
705
|
-
nodeUuid: string;
|
|
710
|
+
nodeUuid: string | null;
|
|
711
|
+
name: string | null;
|
|
706
712
|
providerUuid: string;
|
|
707
713
|
nextBillingAt: Date;
|
|
708
714
|
}[];
|
|
@@ -729,14 +735,15 @@ export declare namespace UpdateInfraBillingNodeCommand {
|
|
|
729
735
|
uuid: string;
|
|
730
736
|
countryCode: string;
|
|
731
737
|
name: string;
|
|
732
|
-
};
|
|
738
|
+
} | null;
|
|
733
739
|
provider: {
|
|
734
740
|
uuid: string;
|
|
735
741
|
name: string;
|
|
736
742
|
faviconLink: string | null;
|
|
737
743
|
loginUrl: string | null;
|
|
738
744
|
};
|
|
739
|
-
nodeUuid: string;
|
|
745
|
+
nodeUuid: string | null;
|
|
746
|
+
name: string | null;
|
|
740
747
|
providerUuid: string;
|
|
741
748
|
nextBillingAt: string;
|
|
742
749
|
}[];
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-billing-node.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/update-billing-node.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,6BAA6B,CAAC;IACpC,MAAM,GAAG,4BAA6C,CAAC;IACvD,MAAM,OAAO,4BAAM,CAAC;IAEpB,MAAM,eAAe,2CAK3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;MAQxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"update-billing-node.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/update-billing-node.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,6BAA6B,CAAC;IACpC,MAAM,GAAG,4BAA6C,CAAC;IACvD,MAAM,OAAO,4BAAM,CAAC;IAEpB,MAAM,eAAe,2CAK3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;MAQxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAYzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
|
@@ -39,17 +39,29 @@ export declare namespace UpdateInfraProviderCommand {
|
|
|
39
39
|
totalBills: number;
|
|
40
40
|
}>;
|
|
41
41
|
billingNodes: z.ZodArray<z.ZodObject<{
|
|
42
|
-
nodeUuid: z.ZodString;
|
|
43
42
|
name: z.ZodString;
|
|
44
|
-
|
|
43
|
+
details: z.ZodNullable<z.ZodObject<{
|
|
44
|
+
nodeUuid: z.ZodString;
|
|
45
|
+
countryCode: z.ZodString;
|
|
46
|
+
}, "strip", z.ZodTypeAny, {
|
|
47
|
+
nodeUuid: string;
|
|
48
|
+
countryCode: string;
|
|
49
|
+
}, {
|
|
50
|
+
nodeUuid: string;
|
|
51
|
+
countryCode: string;
|
|
52
|
+
}>>;
|
|
45
53
|
}, "strip", z.ZodTypeAny, {
|
|
46
|
-
nodeUuid: string;
|
|
47
|
-
countryCode: string;
|
|
48
54
|
name: string;
|
|
55
|
+
details: {
|
|
56
|
+
nodeUuid: string;
|
|
57
|
+
countryCode: string;
|
|
58
|
+
} | null;
|
|
49
59
|
}, {
|
|
50
|
-
nodeUuid: string;
|
|
51
|
-
countryCode: string;
|
|
52
60
|
name: string;
|
|
61
|
+
details: {
|
|
62
|
+
nodeUuid: string;
|
|
63
|
+
countryCode: string;
|
|
64
|
+
} | null;
|
|
53
65
|
}>, "many">;
|
|
54
66
|
}, "strip", z.ZodTypeAny, {
|
|
55
67
|
uuid: string;
|
|
@@ -63,9 +75,11 @@ export declare namespace UpdateInfraProviderCommand {
|
|
|
63
75
|
totalBills: number;
|
|
64
76
|
};
|
|
65
77
|
billingNodes: {
|
|
66
|
-
nodeUuid: string;
|
|
67
|
-
countryCode: string;
|
|
68
78
|
name: string;
|
|
79
|
+
details: {
|
|
80
|
+
nodeUuid: string;
|
|
81
|
+
countryCode: string;
|
|
82
|
+
} | null;
|
|
69
83
|
}[];
|
|
70
84
|
}, {
|
|
71
85
|
uuid: string;
|
|
@@ -79,9 +93,11 @@ export declare namespace UpdateInfraProviderCommand {
|
|
|
79
93
|
totalBills: number;
|
|
80
94
|
};
|
|
81
95
|
billingNodes: {
|
|
82
|
-
nodeUuid: string;
|
|
83
|
-
countryCode: string;
|
|
84
96
|
name: string;
|
|
97
|
+
details: {
|
|
98
|
+
nodeUuid: string;
|
|
99
|
+
countryCode: string;
|
|
100
|
+
} | null;
|
|
85
101
|
}[];
|
|
86
102
|
}>;
|
|
87
103
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -97,9 +113,11 @@ export declare namespace UpdateInfraProviderCommand {
|
|
|
97
113
|
totalBills: number;
|
|
98
114
|
};
|
|
99
115
|
billingNodes: {
|
|
100
|
-
nodeUuid: string;
|
|
101
|
-
countryCode: string;
|
|
102
116
|
name: string;
|
|
117
|
+
details: {
|
|
118
|
+
nodeUuid: string;
|
|
119
|
+
countryCode: string;
|
|
120
|
+
} | null;
|
|
103
121
|
}[];
|
|
104
122
|
};
|
|
105
123
|
}, {
|
|
@@ -115,9 +133,11 @@ export declare namespace UpdateInfraProviderCommand {
|
|
|
115
133
|
totalBills: number;
|
|
116
134
|
};
|
|
117
135
|
billingNodes: {
|
|
118
|
-
nodeUuid: string;
|
|
119
|
-
countryCode: string;
|
|
120
136
|
name: string;
|
|
137
|
+
details: {
|
|
138
|
+
nodeUuid: string;
|
|
139
|
+
countryCode: string;
|
|
140
|
+
} | null;
|
|
121
141
|
}[];
|
|
122
142
|
};
|
|
123
143
|
}>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"update-infra-provider.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/update-infra-provider.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,0BAA0B,CAAC;IACjC,MAAM,GAAG,gCAAyC,CAAC;IACnD,MAAM,OAAO,gCAAM,CAAC;IAEpB,MAAM,eAAe,2CAK3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;MASxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc
|
|
1
|
+
{"version":3,"file":"update-infra-provider.command.d.ts","sourceRoot":"","sources":["../../../../commands/infra-billing/update-infra-provider.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,0BAA0B,CAAC;IACjC,MAAM,GAAG,gCAAyC,CAAC;IACnD,MAAM,OAAO,gCAAM,CAAC;IAEpB,MAAM,eAAe,2CAK3B,CAAC;IAEK,MAAM,aAAa;;;;;;;;;;;;;;;MASxB,CAAC;IAEH,KAAY,OAAO,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,aAAa,CAAC,CAAC;IAE7C,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAEzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-all-users.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-all-users.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,eAAqB,CAAC;IAC/B,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"get-all-users.command.d.ts","sourceRoot":"","sources":["../../../../commands/users/get-all-users.command.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAMxB,yBAAiB,kBAAkB,CAAC;IACzB,MAAM,GAAG,eAAqB,CAAC;IAC/B,MAAM,OAAO,eAAM,CAAC;IAEpB,MAAM,eAAe,2CAQ3B,CAAC;IAEK,MAAM,kBAAkB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAAkC,CAAC;IAElE,KAAY,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;IAEvD,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MAKzB,CAAC;IAEH,KAAY,QAAQ,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,cAAc,CAAC,CAAC;CACzD"}
|
|
@@ -9,7 +9,7 @@ var GetAllUsersCommand;
|
|
|
9
9
|
(function (GetAllUsersCommand) {
|
|
10
10
|
GetAllUsersCommand.url = api_1.REST_API.USERS.GET;
|
|
11
11
|
GetAllUsersCommand.TSQ_url = GetAllUsersCommand.url;
|
|
12
|
-
GetAllUsersCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.USERS_ROUTES.GET, 'get', 'Get all users', {
|
|
12
|
+
GetAllUsersCommand.endpointDetails = (0, constants_1.getEndpointDetails)(api_1.USERS_ROUTES.GET, 'get', 'Get all users using offset-based pagination', {
|
|
13
13
|
scope: 'list',
|
|
14
14
|
kind: 'read',
|
|
15
15
|
});
|