@flipdish/authorization 0.2.1 → 0.2.2
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/api.ts +6 -2
- package/configuration.ts +1 -1
- package/dist/api.d.ts +4 -0
- package/dist/api.js +6 -2
- package/dist/configuration.js +1 -1
- package/package.json +1 -1
package/api.ts
CHANGED
|
@@ -878,7 +878,9 @@ export const GetUserPermissionsSuccessResponseResourcesValuePermissionsEnum = {
|
|
|
878
878
|
EditEntityFeatureFlags: 'EditEntityFeatureFlags',
|
|
879
879
|
CreateOrg: 'CreateOrg',
|
|
880
880
|
EditOrg: 'EditOrg',
|
|
881
|
-
ViewOrg: 'ViewOrg'
|
|
881
|
+
ViewOrg: 'ViewOrg',
|
|
882
|
+
ViewWebhooks: 'ViewWebhooks',
|
|
883
|
+
EditWebhooks: 'EditWebhooks'
|
|
882
884
|
} as const;
|
|
883
885
|
|
|
884
886
|
export type GetUserPermissionsSuccessResponseResourcesValuePermissionsEnum = typeof GetUserPermissionsSuccessResponseResourcesValuePermissionsEnum[keyof typeof GetUserPermissionsSuccessResponseResourcesValuePermissionsEnum];
|
|
@@ -1263,7 +1265,9 @@ export const Permissions = {
|
|
|
1263
1265
|
EditEntityFeatureFlags: 'EditEntityFeatureFlags',
|
|
1264
1266
|
CreateOrg: 'CreateOrg',
|
|
1265
1267
|
EditOrg: 'EditOrg',
|
|
1266
|
-
ViewOrg: 'ViewOrg'
|
|
1268
|
+
ViewOrg: 'ViewOrg',
|
|
1269
|
+
ViewWebhooks: 'ViewWebhooks',
|
|
1270
|
+
EditWebhooks: 'EditWebhooks'
|
|
1267
1271
|
} as const;
|
|
1268
1272
|
|
|
1269
1273
|
export type Permissions = typeof Permissions[keyof typeof Permissions];
|
package/configuration.ts
CHANGED
|
@@ -100,7 +100,7 @@ export class Configuration {
|
|
|
100
100
|
|
|
101
101
|
const extraHeaders = param.useDefaultUserAgent ? {} : {
|
|
102
102
|
headers: {
|
|
103
|
-
"user-agent": "Flipdish authorization typescript SDK / 0.2.
|
|
103
|
+
"user-agent": "Flipdish authorization typescript SDK / 0.2.2"
|
|
104
104
|
}
|
|
105
105
|
};
|
|
106
106
|
|
package/dist/api.d.ts
CHANGED
|
@@ -847,6 +847,8 @@ export declare const GetUserPermissionsSuccessResponseResourcesValuePermissionsE
|
|
|
847
847
|
readonly CreateOrg: "CreateOrg";
|
|
848
848
|
readonly EditOrg: "EditOrg";
|
|
849
849
|
readonly ViewOrg: "ViewOrg";
|
|
850
|
+
readonly ViewWebhooks: "ViewWebhooks";
|
|
851
|
+
readonly EditWebhooks: "EditWebhooks";
|
|
850
852
|
};
|
|
851
853
|
export type GetUserPermissionsSuccessResponseResourcesValuePermissionsEnum = typeof GetUserPermissionsSuccessResponseResourcesValuePermissionsEnum[keyof typeof GetUserPermissionsSuccessResponseResourcesValuePermissionsEnum];
|
|
852
854
|
/**
|
|
@@ -1225,6 +1227,8 @@ export declare const Permissions: {
|
|
|
1225
1227
|
readonly CreateOrg: "CreateOrg";
|
|
1226
1228
|
readonly EditOrg: "EditOrg";
|
|
1227
1229
|
readonly ViewOrg: "ViewOrg";
|
|
1230
|
+
readonly ViewWebhooks: "ViewWebhooks";
|
|
1231
|
+
readonly EditWebhooks: "EditWebhooks";
|
|
1228
1232
|
};
|
|
1229
1233
|
export type Permissions = typeof Permissions[keyof typeof Permissions];
|
|
1230
1234
|
/**
|
package/dist/api.js
CHANGED
|
@@ -427,7 +427,9 @@ exports.GetUserPermissionsSuccessResponseResourcesValuePermissionsEnum = {
|
|
|
427
427
|
EditEntityFeatureFlags: 'EditEntityFeatureFlags',
|
|
428
428
|
CreateOrg: 'CreateOrg',
|
|
429
429
|
EditOrg: 'EditOrg',
|
|
430
|
-
ViewOrg: 'ViewOrg'
|
|
430
|
+
ViewOrg: 'ViewOrg',
|
|
431
|
+
ViewWebhooks: 'ViewWebhooks',
|
|
432
|
+
EditWebhooks: 'EditWebhooks'
|
|
431
433
|
};
|
|
432
434
|
exports.ListOrgRolesSuccessResponseValueValueResourceTypeEnum = {
|
|
433
435
|
Property: 'Property',
|
|
@@ -738,7 +740,9 @@ exports.Permissions = {
|
|
|
738
740
|
EditEntityFeatureFlags: 'EditEntityFeatureFlags',
|
|
739
741
|
CreateOrg: 'CreateOrg',
|
|
740
742
|
EditOrg: 'EditOrg',
|
|
741
|
-
ViewOrg: 'ViewOrg'
|
|
743
|
+
ViewOrg: 'ViewOrg',
|
|
744
|
+
ViewWebhooks: 'ViewWebhooks',
|
|
745
|
+
EditWebhooks: 'EditWebhooks'
|
|
742
746
|
};
|
|
743
747
|
exports.RevokeForbiddenRoleRequestBodyCompensatingRoleEnum = {
|
|
744
748
|
OwnerCompensating: 'OwnerCompensating',
|
package/dist/configuration.js
CHANGED
|
@@ -36,7 +36,7 @@ var Configuration = /** @class */ (function () {
|
|
|
36
36
|
this.serverIndex = param.serverIndex;
|
|
37
37
|
var extraHeaders = param.useDefaultUserAgent ? {} : {
|
|
38
38
|
headers: {
|
|
39
|
-
"user-agent": "Flipdish authorization typescript SDK / 0.2.
|
|
39
|
+
"user-agent": "Flipdish authorization typescript SDK / 0.2.2"
|
|
40
40
|
}
|
|
41
41
|
};
|
|
42
42
|
this.baseOptions = __assign(__assign({}, extraHeaders), param.baseOptions);
|