@rlvt/entity-manager-openapi-client 0.0.0-984a641 → 0.0.0-a421930

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.
@@ -1,110 +1,279 @@
1
1
  declare type readonlyP = {
2
- readonly?: undefined;
2
+ readonly?: '__readonly';
3
3
  };
4
4
  declare type writeonlyP = {
5
- writeonly?: undefined;
6
- };
7
- declare type Id<T> = {} & {
8
- [P in keyof T]: T[P];
5
+ writeonly?: '__writeonly';
9
6
  };
10
7
  declare type Primitive = string | Function | number | boolean | Symbol | undefined | null | Date;
11
- declare type Without<T, V, WithNevers = {
12
- [K in keyof T]: Exclude<T[K], undefined> extends V ? never : (T[K] extends Record<string, unknown> ? Without<T[K], V> : T[K]);
13
- }> = Id<Pick<WithNevers, {
14
- [K in keyof WithNevers]: WithNevers[K] extends never ? never : K;
15
- }[keyof WithNevers]>>;
16
- declare type RemoveReadonly<T> = T extends Primitive ? T : T extends Array<infer U> ? RemoveReadonly<U>[] : {
17
- [key in keyof T]: 'readonly' extends keyof T[key] ? never : T[key] extends infer TP ? RemoveReadonly<TP> : never;
18
- };
19
- export declare type WithoutReadonly<T> = Without<RemoveReadonly<T>, never>;
20
- declare type RemoveWriteonly<T> = T extends Primitive ? T : T extends Array<infer U> ? RemoveWriteonly<U>[] : {
21
- [key in keyof T]: 'writeonly' extends keyof T[key] ? never : T[key] extends infer TP ? RemoveWriteonly<TP> : never;
22
- };
23
- export declare type WithoutWriteonly<T> = Without<RemoveWriteonly<T>, never>;
8
+ declare type PropsWithoutReadonly<T> = {
9
+ [key in keyof T]: T[key] extends readonlyP ? NonNullable<T[key]['readonly']> extends '__readonly' ? never : key : key;
10
+ }[keyof T];
11
+ export declare type WithoutReadonly<T> = T extends any ? T extends Primitive ? T : T extends Array<infer U> ? WithoutReadonly<U>[] : {
12
+ [key in keyof Pick<T, PropsWithoutReadonly<T>>]: Pick<T, PropsWithoutReadonly<T>>[key] extends any ? WithoutReadonly<Pick<T, PropsWithoutReadonly<T>>[key]> : never;
13
+ } : never;
14
+ declare type PropsWithoutWriteonly<T> = {
15
+ [key in keyof T]: T[key] extends writeonlyP ? NonNullable<T[key]['writeonly']> extends '__writeonly' ? never : key : key;
16
+ }[keyof T];
17
+ export declare type WithoutWriteonly<T> = T extends any ? T extends Primitive ? T : T extends Array<infer U> ? WithoutWriteonly<U>[] : {
18
+ [key in keyof Pick<T, PropsWithoutWriteonly<T>>]: Pick<T, PropsWithoutWriteonly<T>>[key] extends any ? WithoutWriteonly<Pick<T, PropsWithoutWriteonly<T>>[key]> : never;
19
+ } : never;
20
+ export declare enum Providers {
21
+ GOOGLE = "google",
22
+ SHOPIFY = "shopify"
23
+ }
24
+ export declare type UserProfile = {
25
+ firstname?: string;
26
+ lastname?: string;
27
+ jobtitle?: string;
28
+ phone?: string;
29
+ preferredLang?: string;
30
+ preferredRecipientId?: string;
31
+ preferredMessageId?: string;
32
+ preferredUtm?: {
33
+ medium?: string;
34
+ source?: string;
35
+ campaign?: string;
36
+ };
37
+ };
38
+ export declare type SerializedUser = {
39
+ readonly id: (string) & readonlyP;
40
+ readonly companyId: (string) & readonlyP;
41
+ readonly roleId: (string) & readonlyP;
42
+ readonly resourceGroupIds: (string[]) & readonlyP;
43
+ readonly createdAt: (Date) & readonlyP;
44
+ readonly updatedAt: (Date) & readonlyP;
45
+ password: (string) & writeonlyP;
46
+ email: string;
47
+ readonly lastPasswordUpdate: (Date) & readonlyP;
48
+ readonly disabled: (boolean) & readonlyP;
49
+ readonly mustUpdatePassword: (boolean) & readonlyP;
50
+ readonly connection: ({
51
+ lastAttempts?: Date;
52
+ nbFail?: number;
53
+ }) & readonlyP;
54
+ profile?: UserProfile;
55
+ readonly hasOtp: (boolean) & readonlyP;
56
+ };
57
+ export declare type User = SerializedUser;
24
58
  export declare type Plan = {
25
- 'quota': number;
26
- 'name'?: string;
59
+ quota: number;
60
+ name?: string;
61
+ startDate?: Date;
62
+ endDate?: Date;
27
63
  };
28
64
  export declare type PasswordPolicy = {
29
- 'passwordDuration'?: number;
30
- 'nbSpCharacter'?: number;
31
- 'nbIsNotAlphabeticCharacter'?: number;
32
- 'nbNumberCharacter'?: number;
33
- 'nbLetterInLowercase'?: number;
34
- 'nbLetterInUppercase'?: number;
35
- 'nbCharacter'?: number;
36
- 'nbAttempts'?: number;
37
- 'timeEachAttempts'?: number;
38
- 'timeLockAfterNextAttempts'?: number;
39
- 'infiniteTimeLock'?: boolean;
40
- };
41
- export declare type Record_string_boolean_ = {
42
- [key: string]: boolean;
43
- };
44
- export declare type Record_product_page_or_add_cart_or_purchase_string_ = {
45
- 'product_page': string;
46
- 'add_cart': string;
47
- 'purchase': string;
65
+ passwordDuration?: number;
66
+ nbSpCharacter?: number;
67
+ nbIsNotAlphabeticCharacter?: number;
68
+ nbNumberCharacter?: number;
69
+ nbLetterInLowercase?: number;
70
+ nbLetterInUppercase?: number;
71
+ nbCharacter?: number;
72
+ nbAttempts?: number;
73
+ timeEachAttempts?: number;
74
+ timeLockAfterNextAttempts?: number;
75
+ infiniteTimeLock?: boolean;
76
+ };
77
+ export declare type CompanyPasswordSecurityPolicy = {
78
+ duration: number;
79
+ rules: {
80
+ type: "special-characters" | "numbers" | "characters" | "uppercases" | "lowercases";
81
+ options: {
82
+ minimum?: number;
83
+ maximum?: number;
84
+ };
85
+ }[];
86
+ attempts: {
87
+ maximum: number;
88
+ lockDuration: number;
89
+ };
90
+ };
91
+ export declare type CompanySecurityPolicy = {
92
+ password: CompanyPasswordSecurityPolicy;
93
+ };
94
+ export declare type AnyValue = any | null;
95
+ export declare type IdpMetadata = {
96
+ xmlString: string;
97
+ meta: AnyValue;
98
+ };
99
+ export declare type Buffer = {
100
+ type: "Buffer";
101
+ data: number[];
102
+ };
103
+ export declare type SSOService = {
104
+ isDefault?: boolean;
105
+ Binding: string;
106
+ Location: string;
107
+ };
108
+ export declare type SignatureConfig = {
109
+ prefix?: string;
110
+ location?: {
111
+ reference?: string;
112
+ action?: "append" | "prepend" | "before" | "after";
113
+ };
114
+ };
115
+ export declare type SAMLDocumentTemplate = {
116
+ context?: string;
117
+ };
118
+ export declare type ServiceProviderSettings = {
119
+ metadata?: string | Buffer;
120
+ entityID?: string;
121
+ authnRequestsSigned?: boolean;
122
+ wantAssertionsSigned?: boolean;
123
+ wantMessageSigned?: boolean;
124
+ wantLogoutResponseSigned?: boolean;
125
+ wantLogoutRequestSigned?: boolean;
126
+ privateKey?: string | Buffer;
127
+ privateKeyPass?: string;
128
+ isAssertionEncrypted?: boolean;
129
+ requestSignatureAlgorithm?: string;
130
+ encPrivateKey?: string | Buffer;
131
+ encPrivateKeyPass?: string | Buffer;
132
+ assertionConsumerService?: SSOService[];
133
+ singleLogoutService?: SSOService[];
134
+ signatureConfig?: SignatureConfig;
135
+ loginRequestTemplate?: SAMLDocumentTemplate;
136
+ logoutRequestTemplate?: SAMLDocumentTemplate;
137
+ signingCert?: string | Buffer;
138
+ encryptCert?: string | Buffer;
139
+ transformationAlgorithms?: string[];
140
+ nameIDFormat?: string[];
141
+ allowCreate?: boolean;
142
+ relayState?: string;
143
+ clockDrifts?: (number | number)[];
48
144
  };
145
+ export declare type LoginResponseAttribute = {
146
+ name: string;
147
+ nameFormat: string;
148
+ valueXsiType: string;
149
+ valueTag: string;
150
+ valueXmlnsXs?: string;
151
+ valueXmlnsXsi?: string;
152
+ };
153
+ export declare type LoginResponseTemplate = {
154
+ attributes?: LoginResponseAttribute[];
155
+ context: string;
156
+ };
157
+ export declare type IdentityProviderSettings = {
158
+ metadata?: string | Buffer;
159
+ requestSignatureAlgorithm?: string;
160
+ loginResponseTemplate?: LoginResponseTemplate;
161
+ logoutRequestTemplate?: SAMLDocumentTemplate;
162
+ generateID?: {};
163
+ entityID?: string;
164
+ privateKey?: string | Buffer;
165
+ privateKeyPass?: string;
166
+ signingCert?: string | Buffer;
167
+ encryptCert?: string | Buffer;
168
+ nameIDFormat?: string[];
169
+ singleSignOnService?: SSOService[];
170
+ singleLogoutService?: SSOService[];
171
+ isAssertionEncrypted?: boolean;
172
+ encPrivateKey?: string | Buffer;
173
+ encPrivateKeyPass?: string;
174
+ messageSigningOrder?: string;
175
+ wantLogoutRequestSigned?: boolean;
176
+ wantLogoutResponseSigned?: boolean;
177
+ wantAuthnRequestsSigned?: boolean;
178
+ wantLogoutRequestSignedResponseSigned?: boolean;
179
+ tagPrefix?: {
180
+ [key: string]: string;
181
+ };
182
+ };
183
+ export declare type IdentityProvider = {
184
+ entityMeta: IdpMetadata;
185
+ entitySetting: ServiceProviderSettings & IdentityProviderSettings;
186
+ entityType: string;
187
+ };
188
+ export declare type SpMetadata = {
189
+ xmlString: string;
190
+ meta: AnyValue;
191
+ };
192
+ export declare type ServiceProvider = {
193
+ entityMeta: SpMetadata;
194
+ entitySetting: ServiceProviderSettings & IdentityProviderSettings;
195
+ entityType: string;
196
+ };
197
+ export declare type Pick_SSOConfiguration_domains_or_metadata_or_emailProperty_or_mode_or_identityProvider_or_serviceProvider_ = {
198
+ domains: string[];
199
+ metadata: string;
200
+ emailProperty: "nameID"[] | ("attributes" | string)[];
201
+ mode: "invitation" | "create";
202
+ readonly identityProvider: (IdentityProvider) & readonlyP;
203
+ readonly serviceProvider: (ServiceProvider) & readonlyP;
204
+ };
205
+ export declare type SSOConfiguration = Pick_SSOConfiguration_domains_or_metadata_or_emailProperty_or_mode_or_identityProvider_or_serviceProvider_;
49
206
  export declare type SerializedCompany = {
50
- readonly 'id': (string) & readonlyP;
51
- 'defaultRoleId': string;
52
- 'defaultResourceGroupIds': (string)[];
53
- 'name': string;
54
- 'address'?: {
55
- 'line1'?: string;
56
- 'line2'?: string;
57
- 'zipcode'?: string;
58
- 'city'?: string;
59
- 'country'?: string;
207
+ readonly id: (string) & readonlyP;
208
+ defaultRoleId: string;
209
+ defaultResourceGroupIds: string[];
210
+ readonly createdAt: (Date) & readonlyP;
211
+ readonly updatedAt: (Date) & readonlyP;
212
+ plan: Plan & {
213
+ startDate: Date;
214
+ endDate: Date;
215
+ };
216
+ name: string;
217
+ password?: PasswordPolicy;
218
+ disabled: boolean;
219
+ address?: {
220
+ line1?: string;
221
+ line2?: string;
222
+ zipcode?: string;
223
+ city?: string;
224
+ country?: string;
225
+ };
226
+ contact?: {
227
+ name?: string;
228
+ email?: string;
60
229
  };
61
- 'contact'?: {
62
- 'name'?: string;
63
- 'email'?: string;
230
+ securityPolicy: CompanySecurityPolicy;
231
+ sso?: SSOConfiguration;
232
+ custom?: {
233
+ colors?: string[];
64
234
  };
65
- 'plan': Plan & {
66
- 'startDate': Date;
67
- 'endDate': Date;
235
+ retention: number;
236
+ features: {
237
+ [key: string]: boolean;
68
238
  };
69
- 'password'?: PasswordPolicy;
70
- 'custom'?: {
71
- 'colors'?: (string)[];
239
+ events: {
240
+ product_page: string;
241
+ add_cart: string;
242
+ purchase: string;
72
243
  };
73
- 'retention': number;
74
- 'features': Record_string_boolean_;
75
- 'events': Record_product_page_or_add_cart_or_purchase_string_;
76
- 'disabled': boolean;
77
- 'meta': {
78
- 'email-token'?: string;
79
- 'esp'?: string;
244
+ meta: {
245
+ [key: string]: string | number | (false) | (true);
80
246
  };
81
247
  };
82
248
  export declare type Company = SerializedCompany;
83
- export declare type Partial__roleId_string__resourceGroupIds_string_Array____ = {
84
- 'roleId'?: string;
85
- 'resourceGroupIds'?: (string)[];
249
+ export declare type Partial__roleId_string_resourceGroupIds_string_Array___ = {
250
+ roleId?: string;
251
+ resourceGroupIds?: string[];
86
252
  };
87
- export declare type AnyValue = any;
88
- export declare type Record_string_unknown_ = {
89
- [key: string]: AnyValue;
253
+ export declare type Partial_Pick_Company_meta__ = {
254
+ meta?: {
255
+ [key: string]: string | number | (false) | (true);
256
+ };
90
257
  };
91
258
  export declare type RoleRule = {
92
- 'fields'?: (string)[];
93
- 'conditions'?: Record_string_unknown_;
94
- 'inverted'?: boolean;
95
- 'reason'?: string;
96
- 'action': 'create' | 'read' | 'update' | 'delete' | 'access';
97
- 'subject': 'Company' | 'Block' | 'Campaign' | 'BranchGroup' | 'Datasource' | 'OAuthClient' | 'Statistics' | 'BlockContent' | 'User' | 'Billing' | 'Role' | 'ResourceGroup' | 'Invitation';
98
- 'mustMatch'?: ('roleId' | 'resourceGroupIds' | 'companyId' | {
99
- 'field': string;
100
- 'value': 'roleId' | 'resourceGroupIds' | 'companyId' | 'id';
101
- } | 'id')[];
259
+ fields?: string[];
260
+ conditions?: {
261
+ [key: string]: AnyValue;
262
+ };
263
+ inverted?: boolean;
264
+ reason?: string;
265
+ action: "create" | "read" | "update" | "delete" | "access";
266
+ subject: "Company" | "Block" | "Campaign" | "BranchGroup" | "Datasource" | "OAuthClient" | "Statistics" | "BlockContent" | "User" | "Billing" | "Role" | "ResourceGroup" | "Invitation";
267
+ mustMatch?: ("companyId" | "roleId" | "resourceGroupIds" | "id" | {
268
+ field: string;
269
+ value: "companyId" | "roleId" | "resourceGroupIds" | "id";
270
+ })[];
102
271
  };
103
272
  export declare type SerializedRole = {
104
- readonly 'id': (string) & readonlyP;
105
- readonly 'companyId': (string) & readonlyP;
106
- 'name': string;
107
- 'rules': (RoleRule)[];
273
+ readonly id: (string) & readonlyP;
274
+ readonly companyId: (string) & readonlyP;
275
+ name: string;
276
+ rules: RoleRule[];
108
277
  };
109
278
  export declare type Pick_Role_name_or_toJSON_or_rules_ = SerializedRole;
110
279
  export declare type Role = SerializedRole;
@@ -114,80 +283,47 @@ export declare enum InvitationState {
114
283
  CANCELED = "canceled"
115
284
  }
116
285
  export declare type SerializedInvitation = {
117
- readonly 'id': (string) & readonlyP;
118
- readonly 'companyId': (string) & readonlyP;
119
- readonly 'roleId': (string) & readonlyP;
120
- readonly 'resourceGroupIds': ((string)[]) & readonlyP;
121
- 'email': string;
122
- 'createdAt': Date;
123
- 'usedAt'?: Date;
124
- 'state': InvitationState;
286
+ readonly id: (string) & readonlyP;
287
+ readonly companyId: (string) & readonlyP;
288
+ readonly roleId: (string) & readonlyP;
289
+ readonly resourceGroupIds: (string[]) & readonlyP;
290
+ state: InvitationState;
291
+ email: string;
292
+ createdAt: Date;
293
+ usedAt?: Date;
125
294
  };
126
295
  export declare type Invitation = SerializedInvitation;
127
296
  export declare type SerializedResourceGroup = {
128
- readonly 'id': (string) & readonlyP;
129
- readonly 'companyId': (string) & readonlyP;
130
- 'name': string;
131
- 'color'?: string;
297
+ readonly id: (string) & readonlyP;
298
+ readonly companyId: (string) & readonlyP;
299
+ name: string;
300
+ color?: string;
132
301
  };
133
302
  export declare type ResourceGroup = SerializedResourceGroup;
134
303
  export declare type Partial_Pick_Pick_ResourceGroup___name_or_color__ = {
135
- 'name'?: string;
136
- 'color'?: string;
304
+ name?: string;
305
+ color?: string;
137
306
  };
138
307
  export declare type Partial_Pick_Pick_Role___name_or_rules_or_undefined__ = {
139
- 'name'?: string;
140
- 'rules'?: (RoleRule)[];
141
- };
142
- export declare type UserProfile = {
143
- 'firstname'?: string;
144
- 'lastname'?: string;
145
- 'jobtitle'?: string;
146
- 'phone'?: string;
147
- 'preferredLang'?: string;
148
- 'preferredRecipientId'?: string;
149
- 'preferredMessageId'?: string;
150
- 'preferredUtm'?: {
151
- 'medium'?: string;
152
- 'source'?: string;
153
- 'campaign'?: string;
154
- };
308
+ name?: string;
309
+ rules?: RoleRule[];
155
310
  };
156
- export declare type SerializedUser = {
157
- readonly 'id': (string) & readonlyP;
158
- readonly 'companyId': (string) & readonlyP;
159
- readonly 'roleId': (string) & readonlyP;
160
- readonly 'resourceGroupIds': ((string)[]) & readonlyP;
161
- readonly 'createdAt': (Date) & readonlyP;
162
- readonly 'updatedAt': (Date) & readonlyP;
163
- 'password': (string) & writeonlyP;
164
- readonly 'disabled': (boolean) & readonlyP;
165
- 'email': string;
166
- readonly 'lastPasswordUpdate': (Date) & readonlyP;
167
- readonly 'mustUpdatePassword': (boolean) & readonlyP;
168
- readonly 'connection': ({
169
- 'lastAttempts'?: Date;
170
- 'nbFail'?: number;
171
- }) & readonlyP;
172
- 'profile'?: UserProfile;
173
- };
174
- export declare type User = SerializedUser;
175
- export declare type Partial_SerializedUser_ = {
176
- readonly 'id'?: (string) & readonlyP;
177
- readonly 'companyId'?: (string) & readonlyP;
178
- readonly 'roleId'?: (string) & readonlyP;
179
- readonly 'resourceGroupIds'?: ((string)[]) & readonlyP;
180
- readonly 'createdAt'?: (Date) & readonlyP;
181
- readonly 'updatedAt'?: (Date) & readonlyP;
182
- 'password'?: (string) & writeonlyP;
183
- readonly 'disabled'?: (boolean) & readonlyP;
184
- 'email'?: string;
185
- readonly 'lastPasswordUpdate'?: (Date) & readonlyP;
186
- readonly 'mustUpdatePassword'?: (boolean) & readonlyP;
187
- readonly 'connection'?: ({
188
- 'lastAttempts'?: Date;
189
- 'nbFail'?: number;
311
+ export declare type Partial_Pick_SerializedUser_companyId_or_roleId_or_resourceGroupIds_or_email_or_lastPasswordUpdate_or_disabled_or_mustUpdatePassword_or_connection_or_profile_or_hasOtp_or_id_or_createdAt_or_updatedAt__ = {
312
+ readonly companyId?: (string) & readonlyP;
313
+ readonly roleId?: (string) & readonlyP;
314
+ readonly resourceGroupIds?: (string[]) & readonlyP;
315
+ email?: string;
316
+ readonly lastPasswordUpdate?: (Date) & readonlyP;
317
+ readonly disabled?: (boolean) & readonlyP;
318
+ readonly mustUpdatePassword?: (boolean) & readonlyP;
319
+ readonly connection?: ({
320
+ lastAttempts?: Date;
321
+ nbFail?: number;
190
322
  }) & readonlyP;
191
- 'profile'?: UserProfile;
323
+ profile?: UserProfile;
324
+ readonly hasOtp?: (boolean) & readonlyP;
325
+ readonly id?: (string) & readonlyP;
326
+ readonly createdAt?: (Date) & readonlyP;
327
+ readonly updatedAt?: (Date) & readonlyP;
192
328
  };
193
329
  export {};
@@ -2,11 +2,16 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
  Object.defineProperty(exports, "__esModule", { value: true });
5
- exports.InvitationState = void 0;
5
+ exports.InvitationState = exports.Providers = void 0;
6
+ var Providers;
7
+ (function (Providers) {
8
+ Providers["GOOGLE"] = "google";
9
+ Providers["SHOPIFY"] = "shopify";
10
+ })(Providers = exports.Providers || (exports.Providers = {}));
6
11
  var InvitationState;
7
12
  (function (InvitationState) {
8
13
  InvitationState["WAITING"] = "waiting";
9
14
  InvitationState["USED"] = "used";
10
15
  InvitationState["CANCELED"] = "canceled";
11
16
  })(InvitationState = exports.InvitationState || (exports.InvitationState = {}));
12
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBeUhwQixJQUFZLGVBSVg7QUFKRCxXQUFZLGVBQWU7SUFDdkIsc0NBQW1CLENBQUE7SUFDbkIsZ0NBQWEsQ0FBQTtJQUNiLHdDQUFxQixDQUFBO0FBQ3pCLENBQUMsRUFKVyxlQUFlLEdBQWYsdUJBQWUsS0FBZix1QkFBZSxRQUkxQiJ9
17
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZGVmaW5pdGlvbnMuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi9kZWZpbml0aW9ucy50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiO0FBQUEsb0JBQW9CO0FBQ3BCLG9CQUFvQjs7O0FBZ0NwQixJQUFZLFNBR1g7QUFIRCxXQUFZLFNBQVM7SUFDakIsOEJBQWlCLENBQUE7SUFDakIsZ0NBQW1CLENBQUE7QUFDdkIsQ0FBQyxFQUhXLFNBQVMsR0FBVCxpQkFBUyxLQUFULGlCQUFTLFFBR3BCO0FBbVFELElBQVksZUFJWDtBQUpELFdBQVksZUFBZTtJQUN2QixzQ0FBbUIsQ0FBQTtJQUNuQixnQ0FBYSxDQUFBO0lBQ2Isd0NBQXFCLENBQUE7QUFDekIsQ0FBQyxFQUpXLGVBQWUsR0FBZix1QkFBZSxLQUFmLHVCQUFlLFFBSTFCIn0=
package/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@rlvt/entity-manager-openapi-client",
3
- "version": "0.0.0-984a641",
3
+ "version": "0.0.0-a421930",
4
4
  "description": "Openapi client for reelevant service",
5
5
  "main": "build/index.js",
6
6
  "repository": "https://github.com/reelevant-tech/openapi-clients",
7
7
  "author": "Reelevant",
8
8
  "license": "MIT",
9
9
  "publishconfig": {
10
- "access": "private"
10
+ "access": "public"
11
11
  },
12
12
  "scripts": {
13
13
  "build": "tsc --project .",
14
14
  "prepublish": "yarn build"
15
15
  },
16
16
  "dependencies": {
17
- "axios": "^0.20.0"
17
+ "axios": "^0.21.1"
18
18
  },
19
19
  "devDependencies": {
20
20
  "@types/axios": "^0.14.0",